From 96068abcf364774c64b1dd8d49516fa17f230679 Mon Sep 17 00:00:00 2001 From: NeilKleistGao Date: Wed, 27 May 2026 18:16:58 +0800 Subject: [PATCH 1/9] WIP: Add test --- .../test/mlscript-compile/SimpleRegExp.mls | 230 ++++++++++++++++++ .../block-staging/SimpleRegExpTest.mls | 162 ++++++++++++ 2 files changed, 392 insertions(+) create mode 100644 hkmc2/shared/src/test/mlscript-compile/SimpleRegExp.mls create mode 100644 hkmc2/shared/src/test/mlscript/block-staging/SimpleRegExpTest.mls diff --git a/hkmc2/shared/src/test/mlscript-compile/SimpleRegExp.mls b/hkmc2/shared/src/test/mlscript-compile/SimpleRegExp.mls new file mode 100644 index 0000000000..7c983fc915 --- /dev/null +++ b/hkmc2/shared/src/test/mlscript-compile/SimpleRegExp.mls @@ -0,0 +1,230 @@ +#config(noFreeze: true) + +module SeqHelper with + fun push(arr, ele) = + arr.push(ele) + arr + fun concat(lhs, rhs) = lhs.concat(rhs) + fun has(arr, ele) = arr.includes(ele) + fun len(s) = s.length + fun eq(arr1, arr2) = + arr1.length == arr2.length and arr1.every((v, i) => v == arr2.(i)) + fun setEq(s1, s2) = + s1.slice().sort() + s2.slice().sort() + s1.length == s2.length and s1.every((v, i) => v.eq(s2.(i))) + +module CharSet with + fun alphabet() = [ + "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", + "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z" + ] + fun space() = [" ", "\n", "\t", "\r"] + fun digit() = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + +module SimpleRegExp with + class Some(val x) + class None + + fun len(s) = SeqHelper.len(s) + fun has(arr, ele) = SeqHelper.has(arr, ele) + fun arrEq(arr1, arr2) = SeqHelper.eq(arr1, arr2) + fun push(arr, ele) = SeqHelper.push(arr, ele) + fun concat(lhs, rhs) = SeqHelper.concat(lhs, rhs) + fun setEq(s1, s2) = SeqHelper.setEq(s1, s2) + + class DedupSet(val arr) with + fun addImp(e, i) = + let s = len(arr) + if i == s then new DedupSet(push(arr, e)) + else + let e' = arr.(i) + if e.eq(e') then this else addImp(e, i + 1) + fun add(e) = + addImp(e, 0) + + class RegExp() with + fun derive(c) + fun canBeEmpty() + fun normalize() + fun eq(other) + fun startsWith(c) + + class Nothing() extends RegExp with + fun derive(c) = this + fun canBeEmpty() = false + fun normalize() = this + fun eq(other) = other is Nothing + fun startsWith(c) = false + + class Empty() extends RegExp with + fun derive(c) = new Nothing() + fun canBeEmpty() = true + fun normalize() = this + fun eq(other) = other is Empty + fun startsWith(c) = false + + class Exact(val ch) extends RegExp with + fun derive(c) = + if startsWith(c) then new Empty() + else new Nothing() + fun canBeEmpty() = false + fun normalize() = this + fun eq(other) = + if other is Exact(ch') then ch == ch' else false + fun startsWith(c) = ch == c + + class Any() extends RegExp with + fun derive(c) = new Empty() + fun canBeEmpty() = false + fun normalize() = this + fun eq(other) = other is Any() + fun startsWith(c) = true + + class Not(val chars) extends RegExp with + fun derive(c) = + if startsWith(c) then new Empty() else new Nothing() + fun canBeEmpty() = false + fun normalize() = this + fun eq(other) = + if other is Not(chars') then arrEq(chars, chars') else false + fun startsWith(c) = not has(chars, c) + + fun notWord() = new Not(CharSet.alphabet()) + fun notSpace() = new Not(CharSet.space()) + fun notDigit() = new Not(CharSet.digit()) + + fun mkUnion(arr, i, s) = + if i == s - 1 then arr.(i) + else + if arr.(i) is + Nothing() then mkUnion(arr, i + 1, s) + else new Union(arr.(i), mkUnion(arr, i + 1, s)) + + class Union(val p1, val p2) extends RegExp with + fun derive(c) = (new Union(p1.derive(c), p2.derive(c))).normalize() + fun canBeEmpty() = p1.canBeEmpty() || p2.canBeEmpty() + fun flat() = + let p1' = if p1 is Union then p1.flat() else [p1] + let p2' = if p2 is Union then p2.flat() else [p2] + concat(p1', p2') + fun iter(st, arr, i, s) = + if i == s then st + else iter(st.add(arr.(i)), arr, i + 1, s) + fun normalize() = + let p1' = p1.normalize() + let p2' = p2.normalize() + let arr1 = if p1' is Union then p1'.flat() else [p1'] + let arr2 = if p2' is Union then p2'.flat() else [p2'] + let s = iter(new DedupSet(arr1), arr2, 0, len(arr2)) + mkUnion(s.arr, 0, len(s.arr)) + fun eq(other) = + let n = other.normalize() + if n is + Union then setEq(normalize().flat(), n.flat()) + else false + fun startsWith(c) = p1.startsWith(c) || p2.startsWith(c) + + fun question(r) = new Union(r, new Empty()) + + class In(val chars) extends RegExp with + fun derive(c) = + if startsWith(c) then new Empty() else new Nothing() + fun canBeEmpty() = false + fun normalize() = this + fun eq(other) = + if other is In(chars') then arrEq(chars, chars') else false + fun startsWith(c) = has(chars, c) + + fun words() = new In(CharSet.alphabet()) + fun spaces() = new In(CharSet.space()) + fun digits() = new In(CharSet.digit()) + + class Concat(val p1, val p2) extends RegExp with + fun derive(c) = + let p1' = p1.derive(c) + if p1.canBeEmpty() then + (new Union(new Concat(p1', p2), p2.derive(c))).normalize() + else (new Concat(p1', p2)).normalize() + fun canBeEmpty() = p1.canBeEmpty() and p2.canBeEmpty() + fun normalize() = + let p1' = p1.normalize() + if p1' is + Empty() then p2.normalize() + Nothing() then p1' + else new Concat(p1', p2.normalize()) + fun eq(other) = + if other is Concat(p1', p2') then p1.eq(p1') and p2.eq(p2') else false + fun startsWith(c) = p1.startsWith(c) || (p1.canBeEmpty() and p2.startsWith(c)) + + fun nTimes(r, i) = + if i == 1 then r + else new Concat(r, nTimes(r, i - 1)) + + class Star(val p) extends RegExp with + fun derive(c) = (new Concat(p.derive(c), new Star(p))).normalize() + fun canBeEmpty() = true + fun normalize() = new Star(p.normalize()) + fun eq(other) = + if other is Star(p') then p.eq(p') else false + fun startsWith(c) = p.startsWith(c) + + fun plus(r) = new Concat(r, new Star(r)) + + fun matchImpl(p, s, acc) = + if len(s) == 0 then + if p.canBeEmpty() then new Some(acc) + else new None + else + if p is + Nothing then new None + else + let c = s.0 + if p.startsWith(c) then + matchImpl(p.derive(c), s.slice(1), acc + c) + else + if p.canBeEmpty() then new Some(acc) else new None + fun match(p, s) = + matchImpl(p, s, "") + + fun matchAllImpl(p, s, res) = + if len(s) == 0 then res + else + if match(p, s) is + Some(ss) then + if len(ss) > 0 then matchAllImpl(p, s.slice(len(ss)), SeqHelper.push(res, ss)) + else matchAllImpl(p, s.slice(1), res) + else matchAllImpl(p, s.slice(1), res) + fun matchAll(p, s) = + matchAllImpl(p, s, []) + + // [\w\.-]+@[\w\.-]+\.[\w\.-]+ + fun matchAllEmail(s) = + let p = plus(new In(SeqHelper.concat(CharSet.alphabet(), ["-", "."]))) + let email = new Concat(p, new Concat(new Exact("@"), new Concat(p, new Concat(new Exact("."), p)))) + matchAll(email, s) + + // \w+://[^/\s?#]+[^\s?#]+(\?[^\s#]*)?(#[^\s]*)? + fun matchAllURI(s) = + let n1 = new Not(["/", "?", "#", " ", "\n", "\t", "\r"]) + let n2 = new Not(["?", "#", " ", "\n", "\t", "\r"]) + let n3 = new Not(["#", " ", "\n", "\t", "\r"]) + let w = words() + let d = digits() + let p = SeqHelper.concat(CharSet.alphabet(), SeqHelper.concat(CharSet.digit(), ["-", "_"])) + let head = new Concat(plus(w), new Concat(new Exact(":"), new Concat(new Exact("/"), new Exact("/")))) + let body = new Concat(plus(n1), plus(n2)) + let params = new Concat(question(new Concat(new Exact("?"), new Star(new In(p)))), question(new Concat(new Exact("#"), new Star(new In(p))))) + let uri = new Concat(head, new Concat(body, params)) + matchAll(uri, s) + + // ((25[0-5]|2[0-4][0-9]|1?[0-9]?[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1?[0-9]?[0-9]) + fun matchAllIPv4(s) = + let fo = new In(["0", "1", "2", "3", "4"]) + let fi = new In(["0", "1", "2", "3", "4", "5"]) + let segment = new Union(new Concat(new Exact("2"), new Concat(new Exact("5"), fi)), new Union( + new Concat(new Exact("2"), new Concat(fo, digits())), + new Concat(question(new Exact("1")), new Concat(question(digits()), digits())) + )) + let ipv4 = new Concat(nTimes(new Concat(segment, new Exact(".")), 3), segment) + matchAll(ipv4, s) \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript/block-staging/SimpleRegExpTest.mls b/hkmc2/shared/src/test/mlscript/block-staging/SimpleRegExpTest.mls new file mode 100644 index 0000000000..6152f873b2 --- /dev/null +++ b/hkmc2/shared/src/test/mlscript/block-staging/SimpleRegExpTest.mls @@ -0,0 +1,162 @@ +:js +:staging +:noModuleCheck + +import "../../mlscript-compile/SimpleRegExp.mls" + +open SimpleRegExp + +match(Exact("x"), "x") +//│ = Some("x") + +match(Exact("x"), "x") +//│ = Some("x") + +match(Exact("x"), "") +//│ = None + +match(Exact("x"), "xyz") +//│ = Some("x") + + +match(Any(), "x") +//│ = Some("x") + +match(Any(), "") +//│ = None + +match(Any(), "xyz") +//│ = Some("x") + + +match(Not(["x", "y", "z"]), "xyz") +//│ = None + +match(Not(["x", "y", "z"]), "w") +//│ = Some("w") + + +match(Union(Union(Exact("x"), Exact("y")), Exact("z")), "z") +//│ = Some("z") + +match(Union(Union(Exact("x"), Exact("y")), Exact("z")), "y") +//│ = Some("y") + +match(Union(Union(Exact("x"), Exact("y")), Exact("z")), "w") +//│ = None + + +match(question(Exact("x")), "x") +//│ = Some("x") + +match(question(Exact("x")), "y") +//│ = Some("") + +match(question(Exact("x")), "xx") +//│ = Some("x") + +match(question(Any()), "y") +//│ = Some("y") + + +match(new Concat(new Exact("x"), new Concat(new Exact("y"), new Not(["z"]))), "xyy") +//│ = Some("xyy") + +match(new Concat(new Exact("x"), new Concat(new Exact("y"), new Not(["z"]))), "xyz") +//│ = None + +match(new Concat(new Exact("x"), new Concat(new Exact("y"), new Not(["z"]))), "yyy") +//│ = None + + +// x{3}, equivalent to xxx +match(nTimes(Exact("x"), 3), "xxx") +//│ = Some("xxx") + +match(nTimes(Exact("x"), 3), "xxy") +//│ = None + +match(nTimes(Exact("x"), 3), "xx") +//│ = None + + +match(Concat(Star(Exact("x")), Exact("y")), "x") +//│ = None + +match(Concat(Star(Exact("x")), Exact("y")), "y") +//│ = Some("y") + +match(Concat(Star(Exact("x")), Exact("y")), "xxxxxy") +//│ = Some("xxxxxy") + +match(Concat(Star(Exact("x")), Exact("y")), "xyyyy") +//│ = Some("xy") + + +match(plus(Exact("x")), "") +//│ = None + +match(plus(Exact("x")), "x") +//│ = Some("x") + + +match(plus(Exact("x")), "y") +//│ = None + + +match(plus(Exact("x")), "xxx") +//│ = Some("xxx") + + +match(plus(Exact("x")), "xxxy") +//│ = Some("xxx") + + +:silent +let p = Concat(In(["T", "t"]), Concat(Star(words()), notWord())) + + +matchAll(p, "To be or not to be, that is the question.") +//│ = ["To ", "t ", "to ", "that ", "the ", "tion."] + + +matchAllEmail("foo@bar.baz") +//│ = ["foo@bar.baz"] + +matchAllEmail("foo-foo@bar.baz") +//│ = ["foo-foo@bar.baz"] + +matchAllEmail("a.b.c.d@e-f.g.h") +//│ = ["a.b.c.d@e-f.g.h"] + +matchAllEmail("a-b.c.d@e-f.g.h") +//│ = ["a-b.c.d@e-f.g.h"] + +matchAllEmail("foo@bar@baz") +//│ = [] + +matchAllEmail("f@a") +//│ = [] + + +matchAllURI("http://foo.bar.com") +//│ = ["http://foo.bar.com"] + + +matchAllURI("http://foo.bar.com?xxx") +//│ = ["http://foo.bar.com?xxx"] + + +matchAllURI("http://foo.bar.com?xxx#42") +//│ = ["http://foo.bar.com?xxx#42"] + + +matchAllURI("http://foo.bar.com#42") +//│ = ["http://foo.bar.com#42"] + + +matchAllIPv4("8.8.8.8") +//│ = ["8.8.8.8"] + +matchAllIPv4("192.168.1.1") +//│ = ["192.168.1.1"] From a5c9be7dd9c90161290df8a3dac4feae0ad6dd9d Mon Sep 17 00:00:00 2001 From: NeilKleistGao Date: Thu, 28 May 2026 15:37:18 +0800 Subject: [PATCH 2/9] WIP: Cherrypick simple fix --- .../mlscript-compile/NaiveTransform3D.mls | 57 +- .../src/test/mlscript-compile/Shape.mls | 7 +- .../mlscript-compile/SpecializeHelpers.mls | 24 +- .../mlscript-compile/staging/StagedRegExp.mls | 230 + .../mlscript-compile/staging/Transform3D.mls | 41 +- .../staging/benchmark/NaiveTest.mls | 21 - .../staging/benchmark/StagedTest.mls | 19 - .../staging/benchmark/Transform3D.mls | 106 - .../staging/benchmark/random_coordinates.csv | 160000 --------------- .../staging/out/AdjacentClasses.mls | 6 +- .../staging/out/CombinedModule.mls | 10 +- .../staging/out/LinkingGeneratedClasses.mls | 10 +- .../staging/out/StagedClass.mls | 30 +- .../staging/out/Transform3D.mls | 4750 +- .../test/mlscript/block-staging/ShapeProp.mls | 21 +- .../block-staging/StagedRegExpTest.mls | 514 + .../block-staging/Transform3DTest.mls | 208 +- 17 files changed, 4654 insertions(+), 161400 deletions(-) create mode 100644 hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mls delete mode 100644 hkmc2/shared/src/test/mlscript-compile/staging/benchmark/NaiveTest.mls delete mode 100644 hkmc2/shared/src/test/mlscript-compile/staging/benchmark/StagedTest.mls delete mode 100644 hkmc2/shared/src/test/mlscript-compile/staging/benchmark/Transform3D.mls delete mode 100644 hkmc2/shared/src/test/mlscript-compile/staging/benchmark/random_coordinates.csv create mode 100644 hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls diff --git a/hkmc2/shared/src/test/mlscript-compile/NaiveTransform3D.mls b/hkmc2/shared/src/test/mlscript-compile/NaiveTransform3D.mls index c1f7e8052d..255a237d6b 100644 --- a/hkmc2/shared/src/test/mlscript-compile/NaiveTransform3D.mls +++ b/hkmc2/shared/src/test/mlscript-compile/NaiveTransform3D.mls @@ -2,73 +2,42 @@ module Mx with fun init(len, dft) = globalThis.Array(len).fill(dft) - fun set1D(a, i, v) = + fun setAt(a, i, v) = set a.(i) = v a - fun set2D(m, i, j, v) = - set m.(i).(j) = v - m + fun len(arr) = arr.length module NaiveTransform3D with + class Matrix(val arr, val r, val c) + fun iter(sum, x, y, colX, i, j, k) = - if k > 0 then iter(sum + x.(i).(colX - k) * y.(colX - k).(j), x, y, colX, i, j, k - 1) + if k > 0 then iter(sum + x.arr.(i * x.c + colX - k) * y.arr.((colX - k) * y.c + j), x, y, colX, i, j, k - 1) else sum fun iterCol(m, x, y, colX, colY, i, j) = if j === 0 then m - else iterCol(Mx.set2D(m, i, colY - j, iter(0.0, x, y, colX, i, colY - j, colX)), x, y, colX, colY, i, j - 1) + else iterCol(update(m, i, colY - j, iter(0.0, x, y, colX, i, colY - j, colX)), x, y, colX, colY, i, j - 1) fun iterRow(m, x, y, rowX, colX, colY, i) = if i === 0 then m else iterRow(iterCol(m, x, y, colX, colY, rowX - i, colY), x, y, rowX, colX, colY, i - 1) - fun iterInit(m, r, c, i) = - if i === 0 then m - else - iterInit(Mx.set1D(m, r - i, Mx.init(c, 0)), r, c, i - 1) - fun iterID(m, w, i) = if i === 0 then m else - iterID(Mx.set2D(m, w - i, w - i, 1), w, i - 1) - - // TODO: remove manual lifting above after we can stage them correctly + iterID(update(m, w - i, w - i, 1), w, i - 1) - fun zeros(r, c) = - let m = Mx.init(r, []) - iterInit(m, r, c, r) - m + fun zeros(r, c) = new Matrix(Mx.init(r * c, 0), r, c) fun multiply(x, y) = - let rowX = x.length - let colX = x.0.length - let rowY = y.length - let colY = y.0.length - let res = zeros(rowX, colY) - iterRow(res, x, y, rowX, colX, colY, rowX) - // fun multiply(x, y) = - // let rowX = x.length - // let colX = x.0.length - // let rowY = y.length - // let colY = y.0.length - // fun iterRow(m, i) = - // if i === rowX then m - // else - // fun iterCol(vec, j) = - // if j === colY then vec - // else - // fun iter(sum, k) = - // if k < rowY then iter(sum + x.(i).(k) * y.(k).(j), k + 1) - // else sum - // iterCol(vec.concat(iter of 0.0, 0), j + 1) - // iterRow(m.concat([iterCol of [], 0]), i + 1) - // iterRow([], 0) + let res = zeros(x.r, y.c) + iterRow(res, x, y, x.r, x.c, y.c, x.r) fun ident(w) = let m = zeros(w, w) iterID(m, w, w) - fun update(m, i, j, v) = Mx.set2D(m, i, j, v) + fun update(m, i, j, v) = new Matrix(Mx.setAt(m.arr, i * m.c + j, v), m.r, m.c) fun transform(dx, dy, dz) = update of @@ -119,8 +88,8 @@ module NaiveTransform3D with rotateX(rotation.0), ident(4) let res = multiply of transform(position.0, position.1, position.2), multiply of - rot, multiply(scale(scaling.0, scaling.1, scaling.2), [[local.0], [local.1], [local.2], [1]]) - [res.0, res.1, res.2] + rot, multiply(scale(scaling.0, scaling.1, scaling.2), new Matrix([local.0, local.1, local.2, 1], 4, 1)) + [res.arr.0, res.arr.1, res.arr.2] fun model0(local) = model(local, [11, 4, 51], [0.4, 0.19, 0.19], [0.8 * 3.14159265, 3.1415926535, 0.0]) diff --git a/hkmc2/shared/src/test/mlscript-compile/Shape.mls b/hkmc2/shared/src/test/mlscript-compile/Shape.mls index f880367ba8..c1025b32c8 100644 --- a/hkmc2/shared/src/test/mlscript-compile/Shape.mls +++ b/hkmc2/shared/src/test/mlscript-compile/Shape.mls @@ -61,7 +61,10 @@ fun silh(p: Case): Shape = if p is Block.Tup(n) then Arr(Array(n).fill(Dyn())) fun getActualClass(c) = if not (c."class" is undefined) then c.class else c -fun isSubClassOf(d, b) = getActualClass(b).isPrototypeOf(getActualClass(d)) +fun isSubClassOf(d, b) = + let dClass = getActualClass(d) + let bClass = getActualClass(b) + dClass == bClass || bClass.isPrototypeOf(dClass) fun filter(s: Shape, p: Case): Array[Shape] = if [s, p] is @@ -86,4 +89,4 @@ fun rest(s: Shape, p: Case): Array[Shape] = isSubClassOf(c1.value, c2.value) then [] [Class(c1, _), Block.Cls(c2, _)] and c1.name == c2.name then [s] [Dyn, _] then [s] - else [s] \ No newline at end of file + else [s] diff --git a/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls b/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls index f6c12d6beb..4b4626e326 100644 --- a/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls +++ b/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls @@ -66,6 +66,9 @@ class Ctx( else ctx.set(ps, ss) this + fun refine(path: Path, ss: ShapeSet) = + ctx.set(showCtxPath(path), ss) + this // Later ValDefn (in derived class) shadows earlier ValDefn (in base class) fun addValDefn(ps: String, ss: ShapeSet) = valDefnCtx.set(ps, ss) @@ -224,7 +227,7 @@ fun subLitPath(ctx, p) = if p is Select(qual, name) then Select(subLitPath(ctx, qual), name) ValueRef(_) and let s = sop(ctx, p) - staticSet(s) and shapeset2path(s, ctx.allocs) is [End(), res] then res + s.values() is [Lit(lit)] then ValueLit(lit) else p @@ -304,17 +307,13 @@ fun sorCall(ctx, r, f, args, argShapes) = if f is ValueRef(symb) then sorBuiltinOp(ctx, r, f, symb.name, args) // built-in or top-level Select(ValueRef(ModuleSymbol(name, value, redir)), Symbol(fld)) and let mapPropName = getGenMapName(name, false) - let cachePropName = getCacheName(name, false) let genMap = value.(mapPropName) not (genMap is undefined) and - let f_gen = genMap.get(fld) - not (f_gen is Runtime.Unit) and // staged function + let f_gen = genMap.get(fld) + not (f_gen is Runtime.Unit) then // staged function let res = f_gen(...argShapes) - staticSet(res.1) then - let v2p = shapeset2path(res.1, ctx.allocs) - [v2p.0, v2p.1, res.1] - else - [End(), Call(Select(ValueRef(ModuleSymbol(name, value, redir)), Symbol(res.0)), args), res.1] + let callPath = if res.0 == fld then Select(ValueRef(ModuleSymbol(name, value, redir)), Symbol(res.0)) else ValueRef(Symbol(res.0)) + [End(), Call(callPath, args), res.1] else throw Error("module " + name + " is staged but function " + fld + " is not found in generator map") argShapes.every(staticSet) and // non staged function and params known @@ -334,10 +333,9 @@ fun sorCall(ctx, r, f, args, argShapes) = if f is // shape of result: return [blk, res, s] // where blk is the block needed to construct the result res (End() if not needed) and s is the shape fun sor(ctx, r) = if r is - Path and + Path then let s = sop(ctx, r) - staticSet(s) and shapeset2path(s, ctx.allocs) is [blk, res] then [blk, res, s] - else [End(), subLitPath(ctx, r), s] + [End(), subLitPath(ctx, r), s] Instantiate(cls, args) then sorInstantiate(ctx, r, cls, args) Tuple(elems) then [End(), r, mkArr(elems.map(a => sop(ctx, a.value)))] Call(f, args) then sorCall(ctx, r, f, args, args.map((a, _, _) => sop(ctx, a.value))) @@ -457,7 +455,7 @@ fun prop(ctx, b) = if b is ) fun propBranch(body, branchShape) = let branchCtx = ctx.clone - if not p is ValueLit do branchCtx.add(p, branchShape) + if not p is ValueLit do branchCtx.refine(p, branchShape) let res = prop(branchCtx, body) [...res, branchCtx.sub(ctx)] let filteredArms = foldl((r, arm) => diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mls b/hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mls new file mode 100644 index 0000000000..6404d05f61 --- /dev/null +++ b/hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mls @@ -0,0 +1,230 @@ +#config(noFreeze: true) + +module SeqHelper with + fun push(arr, ele) = + arr.push(ele) + arr + fun concat(lhs, rhs) = lhs.concat(rhs) + fun has(arr, ele) = arr.includes(ele) + fun len(s) = s.length + fun eq(arr1, arr2) = + arr1.length == arr2.length and arr1.every((v, i) => v == arr2.(i)) + fun setEq(s1, s2) = + s1.slice().sort() + s2.slice().sort() + s1.length == s2.length and s1.every((v, i) => v.eq(s2.(i))) + +module CharSet with + fun alphabet() = [ + "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", + "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z" + ] + fun space() = [" ", "\n", "\t", "\r"] + fun digit() = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + +staged module StagedRegExp with + class Some(val x) + class None + + fun len(s) = SeqHelper.len(s) + fun has(arr, ele) = SeqHelper.has(arr, ele) + fun arrEq(arr1, arr2) = SeqHelper.eq(arr1, arr2) + fun push(arr, ele) = SeqHelper.push(arr, ele) + fun concat(lhs, rhs) = SeqHelper.concat(lhs, rhs) + fun setEq(s1, s2) = SeqHelper.setEq(s1, s2) + + staged class DedupSet(val arr) with + fun addImp(e, i) = + let s = len(arr) + if i == s then new DedupSet(push(arr, e)) + else + let e' = arr.(i) + if e.eq(e') then this else addImp(e, i + 1) + fun add(e) = + addImp(e, 0) + + staged class RegExp() with + fun derive(c) + fun canBeEmpty() + fun normalize() + fun eq(other) + fun startsWith(c) + + staged class Nothing() extends RegExp with + fun derive(c) = this + fun canBeEmpty() = false + fun normalize() = this + fun eq(other) = other is Nothing + fun startsWith(c) = false + + staged class Empty() extends RegExp with + fun derive(c) = new Nothing() + fun canBeEmpty() = true + fun normalize() = this + fun eq(other) = other is Empty + fun startsWith(c) = false + + staged class Exact(val ch) extends RegExp with + fun derive(c) = + if startsWith(c) then new Empty() + else new Nothing() + fun canBeEmpty() = false + fun normalize() = this + fun eq(other) = + if other is Exact(ch') then ch == ch' else false + fun startsWith(c) = ch == c + + staged class Any() extends RegExp with + fun derive(c) = new Empty() + fun canBeEmpty() = false + fun normalize() = this + fun eq(other) = other is Any() + fun startsWith(c) = true + + staged class Not(val chars) extends RegExp with + fun derive(c) = + if startsWith(c) then new Empty() else new Nothing() + fun canBeEmpty() = false + fun normalize() = this + fun eq(other) = + if other is Not(chars') then arrEq(chars, chars') else false + fun startsWith(c) = not has(chars, c) + + fun notWord() = new Not(CharSet.alphabet()) + fun notSpace() = new Not(CharSet.space()) + fun notDigit() = new Not(CharSet.digit()) + + fun mkUnion(arr, i, s) = + if i == s - 1 then arr.(i) + else + if arr.(i) is + Nothing() then mkUnion(arr, i + 1, s) + else new Union(arr.(i), mkUnion(arr, i + 1, s)) + + staged class Union(val p1, val p2) extends RegExp with + fun derive(c) = (new Union(p1.derive(c), p2.derive(c))).normalize() + fun canBeEmpty() = p1.canBeEmpty() || p2.canBeEmpty() + fun flat() = + let p1' = if p1 is Union then p1.flat() else [p1] + let p2' = if p2 is Union then p2.flat() else [p2] + concat(p1', p2') + fun iter(st, arr, i, s) = + if i == s then st + else iter(st.add(arr.(i)), arr, i + 1, s) + fun normalize() = + let p1' = p1.normalize() + let p2' = p2.normalize() + let arr1 = if p1' is Union then p1'.flat() else [p1'] + let arr2 = if p2' is Union then p2'.flat() else [p2'] + let s = iter(new DedupSet(arr1), arr2, 0, len(arr2)) + mkUnion(s.arr, 0, len(s.arr)) + fun eq(other) = + let n = other.normalize() + if n is + Union then setEq(normalize().flat(), n.flat()) + else false + fun startsWith(c) = p1.startsWith(c) || p2.startsWith(c) + + fun question(r) = new Union(r, new Empty()) + + staged class In(val chars) extends RegExp with + fun derive(c) = + if startsWith(c) then new Empty() else new Nothing() + fun canBeEmpty() = false + fun normalize() = this + fun eq(other) = + if other is In(chars') then arrEq(chars, chars') else false + fun startsWith(c) = has(chars, c) + + fun words() = new In(CharSet.alphabet()) + fun spaces() = new In(CharSet.space()) + fun digits() = new In(CharSet.digit()) + + staged class Concat(val p1, val p2) extends RegExp with + fun derive(c) = + let p1' = p1.derive(c) + if p1.canBeEmpty() then + (new Union(new Concat(p1', p2), p2.derive(c))).normalize() + else (new Concat(p1', p2)).normalize() + fun canBeEmpty() = p1.canBeEmpty() and p2.canBeEmpty() + fun normalize() = + let p1' = p1.normalize() + if p1' is + Empty() then p2.normalize() + Nothing() then p1' + else new Concat(p1', p2.normalize()) + fun eq(other) = + if other is Concat(p1', p2') then p1.eq(p1') and p2.eq(p2') else false + fun startsWith(c) = p1.startsWith(c) || (p1.canBeEmpty() and p2.startsWith(c)) + + fun nTimes(r, i) = + if i == 1 then r + else new Concat(r, nTimes(r, i - 1)) + + staged class Star(val p) extends RegExp with + fun derive(c) = (new Concat(p.derive(c), new Star(p))).normalize() + fun canBeEmpty() = true + fun normalize() = new Star(p.normalize()) + fun eq(other) = + if other is Star(p') then p.eq(p') else false + fun startsWith(c) = p.startsWith(c) + + fun plus(r) = new Concat(r, new Star(r)) + + fun matchImpl(p, s, acc) = + if len(s) == 0 then + if p.canBeEmpty() then new Some(acc) + else new None + else + if p is + Nothing then new None + else + let c = s.0 + if p.startsWith(c) then + matchImpl(p.derive(c), s.slice(1), acc + c) + else + if p.canBeEmpty() then new Some(acc) else new None + fun match(p, s) = + matchImpl(p, s, "") + + fun matchAllImpl(p, s, res) = + if len(s) == 0 then res + else + if match(p, s) is + Some(ss) then + if len(ss) > 0 then matchAllImpl(p, s.slice(len(ss)), SeqHelper.push(res, ss)) + else matchAllImpl(p, s.slice(1), res) + else matchAllImpl(p, s.slice(1), res) + fun matchAll(p, s) = + matchAllImpl(p, s, []) + + // [\w\.-]+@[\w\.-]+\.[\w\.-]+ + fun matchAllEmail(s) = + let p = plus(new In(SeqHelper.concat(CharSet.alphabet(), ["-", "."]))) + let email = new Concat(p, new Concat(new Exact("@"), new Concat(p, new Concat(new Exact("."), p)))) + matchAll(email, s) + + // \w+://[^/\s?#]+[^\s?#]+(\?[^\s#]*)?(#[^\s]*)? + fun matchAllURI(s) = + let n1 = new Not(["/", "?", "#", " ", "\n", "\t", "\r"]) + let n2 = new Not(["?", "#", " ", "\n", "\t", "\r"]) + let n3 = new Not(["#", " ", "\n", "\t", "\r"]) + let w = words() + let d = digits() + let p = SeqHelper.concat(CharSet.alphabet(), SeqHelper.concat(CharSet.digit(), ["-", "_"])) + let head = new Concat(plus(w), new Concat(new Exact(":"), new Concat(new Exact("/"), new Exact("/")))) + let body = new Concat(plus(n1), plus(n2)) + let params = new Concat(question(new Concat(new Exact("?"), new Star(new In(p)))), question(new Concat(new Exact("#"), new Star(new In(p))))) + let uri = new Concat(head, new Concat(body, params)) + matchAll(uri, s) + + // ((25[0-5]|2[0-4][0-9]|1?[0-9]?[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1?[0-9]?[0-9]) + fun matchAllIPv4(s) = + let fo = new In(["0", "1", "2", "3", "4"]) + let fi = new In(["0", "1", "2", "3", "4", "5"]) + let segment = new Union(new Concat(new Exact("2"), new Concat(new Exact("5"), fi)), new Union( + new Concat(new Exact("2"), new Concat(fo, digits())), + new Concat(question(new Exact("1")), new Concat(question(digits()), digits())) + )) + let ipv4 = new Concat(nTimes(new Concat(segment, new Exact(".")), 3), segment) + matchAll(ipv4, s) \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/Transform3D.mls b/hkmc2/shared/src/test/mlscript-compile/staging/Transform3D.mls index 97c3f6f182..2db5a3bfe3 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/Transform3D.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/Transform3D.mls @@ -2,53 +2,42 @@ module Mx with fun init(len, dft) = globalThis.Array(len).fill(dft) - fun set1D(a, i, v) = + fun setAt(a, i, v) = set a.(i) = v a - fun set2D(m, i, j, v) = - set m.(i).(j) = v - m + fun len(arr) = arr.length staged module Transform3D with + class Matrix(val arr, val r, val c) + fun iter(sum, x, y, colX, i, j, k) = - if k > 0 then iter(sum + x.(i).(colX - k) * y.(colX - k).(j), x, y, colX, i, j, k - 1) + if k > 0 then iter(sum + x.arr.(i * x.c + colX - k) * y.arr.((colX - k) * y.c + j), x, y, colX, i, j, k - 1) else sum fun iterCol(m, x, y, colX, colY, i, j) = if j === 0 then m - else iterCol(Mx.set2D(m, i, colY - j, iter(0.0, x, y, colX, i, colY - j, colX)), x, y, colX, colY, i, j - 1) + else iterCol(update(m, i, colY - j, iter(0.0, x, y, colX, i, colY - j, colX)), x, y, colX, colY, i, j - 1) fun iterRow(m, x, y, rowX, colX, colY, i) = if i === 0 then m else iterRow(iterCol(m, x, y, colX, colY, rowX - i, colY), x, y, rowX, colX, colY, i - 1) - fun iterInit(m, r, c, i) = - if i === 0 then m - else - iterInit(Mx.set1D(m, r - i, Mx.init(c, 0)), r, c, i - 1) - fun iterID(m, w, i) = if i === 0 then m else - iterID(Mx.set2D(m, w - i, w - i, 1), w, i - 1) + iterID(update(m, w - i, w - i, 1), w, i - 1) - fun zeros(r, c) = - let m = Mx.init(r, []) - iterInit(m, r, c, r) + fun zeros(r, c) = new Matrix(Mx.init(r * c, 0), r, c) fun multiply(x, y) = - let rowX = x.length - let colX = x.0.length - let rowY = y.length - let colY = y.0.length - let res = zeros(rowX, colY) - iterRow(res, x, y, rowX, colX, colY, rowX) + let res = zeros(x.r, y.c) + iterRow(res, x, y, x.r, x.c, y.c, x.r) fun ident(w) = let m = zeros(w, w) iterID(m, w, w) - fun update(m, i, j, v) = Mx.set2D(m, i, j, v) + fun update(m, i, j, v) = new Matrix(Mx.setAt(m.arr, i * m.c + j, v), m.r, m.c) fun transform(dx, dy, dz) = update of @@ -99,8 +88,12 @@ staged module Transform3D with rotateX(rotation.0), ident(4) let res = multiply of transform(position.0, position.1, position.2), multiply of - rot, multiply(scale(scaling.0, scaling.1, scaling.2), [[local.0], [local.1], [local.2], [1]]) - [res.0, res.1, res.2] + rot, multiply(scale(scaling.0, scaling.1, scaling.2), new Matrix([local.0, local.1, local.2, 1], 4, 1)) + [res.arr.0, res.arr.1, res.arr.2] fun model0(local) = model(local, [11, 4, 51], [0.4, 0.19, 0.19], [0.8 * 3.14159265, 3.1415926535, 0.0]) + + fun moveBy(v, dx, dy, dz) = + let m = transform(dx, dy, dz) + multiply(m, new Matrix([v.0, v.1, v.2, 1], 4, 1)) diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/benchmark/NaiveTest.mls b/hkmc2/shared/src/test/mlscript-compile/staging/benchmark/NaiveTest.mls deleted file mode 100644 index 2c55239b30..0000000000 --- a/hkmc2/shared/src/test/mlscript-compile/staging/benchmark/NaiveTest.mls +++ /dev/null @@ -1,21 +0,0 @@ -import "fs" - -// import "./NaiveTransform3D.mjs" -import "./../../NaiveTransform3D.mls" - -let inputFile = "./random_coordinates.csv" - -let text = fs.readFileSync(inputFile, "utf-8") -let coords = text.trim().split("\n").map(line => - let t = line.split(",").map(Number) - [[t.0], [t.1], [t.2]] -) - - -let begin = globalThis.process.hrtime() -coords.map(coord => NaiveTransform3D.model0(coord)) -let diff = globalThis.process.hrtime(begin) -let diffTime = diff.0 * 1000000000 + diff.1 -console.log("time: " + diffTime) - - diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/benchmark/StagedTest.mls b/hkmc2/shared/src/test/mlscript-compile/staging/benchmark/StagedTest.mls deleted file mode 100644 index 10ad3a2472..0000000000 --- a/hkmc2/shared/src/test/mlscript-compile/staging/benchmark/StagedTest.mls +++ /dev/null @@ -1,19 +0,0 @@ -import "fs" - -// import "./Transform3D.mls" -import "./../out/Transform3D.mls" - -let inputFile = "./random_coordinates.csv" - -let text = fs.readFileSync(inputFile, "utf-8") -let coords = text.trim().split("\n").map(line => - let t = line.split(",").map(Number) - [[t.0], [t.1], [t.2]] -) - - -let begin = globalThis.process.hrtime() -coords.map(coord => Transform3D.model0(coord)) -let diff = globalThis.process.hrtime(begin) -let diffTime = diff.0 * 1000000000 + diff.1 -console.log("time: " + diffTime) diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/benchmark/Transform3D.mls b/hkmc2/shared/src/test/mlscript-compile/staging/benchmark/Transform3D.mls deleted file mode 100644 index 802723c4e3..0000000000 --- a/hkmc2/shared/src/test/mlscript-compile/staging/benchmark/Transform3D.mls +++ /dev/null @@ -1,106 +0,0 @@ -#config(noFreeze: true) - -module Mx with - fun init(len, dft) = globalThis.Array(len).fill(dft) - fun set1D(a, i, v) = - set a.(i) = v - a - fun set2D(m, i, j, v) = - set m.(i).(j) = v - m - -module Transform3D with - fun iter(sum, x, y, colX, i, j, k) = - if k > 0 then iter(sum + x.(i).(colX - k) * y.(colX - k).(j), x, y, colX, i, j, k - 1) - else sum - - fun iterCol(m, x, y, colX, colY, i, j) = - if j === 0 then m - else iterCol(Mx.set2D(m, i, colY - j, iter(0.0, x, y, colX, i, colY - j, colX)), x, y, colX, colY, i, j - 1) - - fun iterRow(m, x, y, rowX, colX, colY, i) = - if i === 0 then m - else iterRow(iterCol(m, x, y, colX, colY, rowX - i, colY), x, y, rowX, colX, colY, i - 1) - - fun iterInit(m, r, c, i) = - if i === 0 then m - else - iterInit(Mx.set1D(m, r - i, Mx.init(c, 0)), r, c, i - 1) - - fun iterID(m, w, i) = - if i === 0 then m - else - iterID(Mx.set2D(m, w - i, w - i, 1), w, i - 1) - - fun zeros(r, c) = - let m = Mx.init(r, []) - iterInit(m, r, c, r) - - fun multiply(x, y) = - let rowX = x.length - let colX = x.0.length - let rowY = y.length - let colY = y.0.length - let res = zeros(rowX, colY) - iterRow(res, x, y, rowX, colX, colY, rowX) - - fun ident(w) = - let m = zeros(w, w) - iterID(m, w, w) - - fun update(m, i, j, v) = Mx.set2D(m, i, j, v) - - fun transform(dx, dy, dz) = - update of - update of - update(ident(4), 0, 3, dx), 1, 3, dy - , 2, 3, dz - - fun scale(sx, sy, sz) = - update of - update of - update(ident(4), 0, 0, sx), 1, 1, sy - , 2, 2, sz - - fun rotateX(angle) = - let s = Math.sin(angle) - let c = Math.cos(angle) - update of - update of - update of - update(ident(4), 1, 1, c), 1, 2, -s - , 2, 1, s - , 2, 2, c - - fun rotateY(angle) = - let s = Math.sin(angle) - let c = Math.cos(angle) - update of - update of - update of - update(ident(4), 0, 0, c), 0, 2, s - , 2, 0, -s - , 2, 2, c - - fun rotateZ(angle) = - let s = Math.sin(angle) - let c = Math.cos(angle) - update of - update of - update of - update(ident(4), 0, 0, c), 0, 1, -s - , 1, 0, s - , 1, 1, c - - fun model(local, position, scaling, rotation) = - let rot = multiply of - rotateZ(rotation.2), multiply of - rotateY(rotation.1), multiply of - rotateX(rotation.0), ident(4) - let res = multiply of - transform(position.0, position.1, position.2), multiply of - rot, multiply(scale(scaling.0, scaling.1, scaling.2), [[local.0], [local.1], [local.2], [1]]) - [res.0, res.1, res.2] - - fun model0(local) = - model(local, [11, 4, 51], [0.4, 0.19, 0.19], [0.8 * 3.14159265, 3.1415926535, 0.0]) diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/benchmark/random_coordinates.csv b/hkmc2/shared/src/test/mlscript-compile/staging/benchmark/random_coordinates.csv deleted file mode 100644 index 5c53c0ce90..0000000000 --- a/hkmc2/shared/src/test/mlscript-compile/staging/benchmark/random_coordinates.csv +++ /dev/null @@ -1,160000 +0,0 @@ --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 --250.91976230527507,901.4286128198323,463.98788362281016 -197.31696839407323,-687.9627191151269,-688.0109593275947 --883.8327756636011,732.3522915498704,202.23002348641762 -416.145155592091,-958.831011408395,939.8197043239886 -664.8852816008434,-575.3217786434477,-636.3500655857988 --633.1909802931324,-391.5155140809245,49.512863264475754 --136.10996271576846,-417.54171960391614,223.70578944475892 --721.0122786959164,-415.7107029295637,-267.27631341261656 --87.86003156592813,570.3519227860272,-600.6524356832806 -28.468876827223312,184.82913772408483,-907.0991745600046 -215.08970380287678,-658.9517526254169,-869.896814029441 -897.7710745066665,931.2640661491187,616.7946962329222 --390.7724616532586,-804.6557719872322,368.46605302431385 --119.69501252079738,-755.9235303104424,-9.646179777459679 --931.2229577695632,818.6408041575642,-482.44003679996615 -325.0445687079639,-376.5778478211781,40.13604235562161 -93.42055868655939,-630.2910889489459,939.1692555291172 -550.2656467222291,878.9978831283781,789.6547008552977 -195.79995762217027,843.7484700462337,-823.014995896161 --608.0342751617096,-909.5454221789239,-349.33933847347134 --222.645420621036,-457.3019364522082,657.4750183038586 --286.4933466128215,-438.1309806252385,85.39216631649697 --718.1515500504747,604.3939615080794,-850.8987126404584 -973.7738732010346,544.4895385933148,-602.5686369316552 --988.9557657527952,630.9228569096683,413.71468769523426 -458.01433608197453,542.5406933718914,-851.9106965318192 --283.06854291145476,-768.2618809497405,726.2068517511871 -246.5962536551158,-338.2039502947016,-872.8832994279527 --378.03535656867564,-349.63335594650596,459.21235667612814 -275.11494271042625,774.425485152653,-55.57014967610144 --760.8115081233966,426.48957444599,521.570097233795 -122.5543951389925,541.9343599091219,-12.408807271218507 -45.46565876398813,-144.9179632829007,-949.1617465118096 --784.2171460133911,-937.1416286265315,272.8208225275607 --371.2880378473467,17.141382329405587,815.1329478521861 --501.4155417022501,-179.2341539287405,511.1022770860973 --542.4036690167551,-846.040180342414,-420.4970941724639 --677.5574254919911,859.3953046851461,616.2407591288338 -266.80751302084695,742.9211803754354,607.344153798229 --626.8598822279283,785.1179969799555,78.68448383130135 -614.880310328125,792.1825998469865,-363.9930500562723 --779.8961509446465,-544.1296749161166,-145.78442274748738 -636.0295318449862,721.461166512687,-986.0957389376186 -21.494605155131467,-165.177993702442,-555.7843790585396 --760.2692653326344,-324.76965719274403,885.8194078250383 --353.5941359584896,37.58124348673209,406.0379177903558 --272.740795241412,943.5641654419214,924.8945898842226 --496.4354083492717,-5.502988215229152,-398.24338036646066 --430.31901124506476,-926.2261052909344,219.1286679597938 -5.358046457722935,-897.0424975000213,-442.7070715267771 -816.5317719333075,-520.8762186660551,-710.2102558175538 --21.09447944487397,971.3009082212013,-515.8894569769991 -344.27109481175717,523.2392306574352,-524.7249120152007 -456.43269722371906,-264.43373456149357,264.6116611871589 -267.0594215217893,71.54936814951702,-819.4204598911833 -670.604991178476,-358.4398700565283,-626.9629792002916 --918.4497168904721,181.78588637648363,355.1287236845649 --966.8243421442877,24.186116598561966,-547.008449604124 -290.34558081889963,-651.2671419900171,381.87547620493183 --226.5293073989252,873.459977473469,-724.9581117080136 --317.867297899483,-773.0529575188218,849.3872365571256 -754.6787067619621,-484.11674456968876,319.96809206835815 -634.4444004024317,110.40162319892465,59.301156712012926 --516.2954181990966,-813.7944643882016,794.4315159066534 -800.8361143266609,266.2029145465358,-321.9404179025986 --301.5808507746782,451.9113577404787,794.2205199051541 -774.1728485302347,559.7510917152476,284.06329230857546 --831.7200700099023,-676.7425718107725,797.1083770541584 -212.85811931917988,-981.6058967667407,-797.0569142679358 -327.00353821611156,-989.8768323075626,-678.3838971650027 -97.46757873317233,383.79039538538655,303.92251900520114 --551.4613810788804,424.35844269507174,-525.5018250063999 --349.2006036814646,492.9828102360482,299.26579809442933 -698.446820988356,315.22578460068667,136.61720667094323 --812.6504643438151,-264.5683938811329,-469.59526463654913 --512.0207132418328,946.0211095048912,-213.80455066647914 -784.0931103542266,262.27725199452584,589.6226070832968 -5.274186210384187,153.80776925271812,-14.964612362272192 --609.514024403911,444.9042305230107,-438.45527511828845 --951.3680671370923,290.9445918143356,-645.7786411859022 -880.9171687058285,907.8571540051748,829.728780440897 --259.6825994891112,-969.0867669422652,856.6371251754508 --143.63170336537132,933.3096380873392,927.2399541785057 -706.0189109347202,-411.10221586082866,-229.80454279614946 -702.2733430337139,-366.1559896874446,-661.0145066278151 -113.6025249167003,872.309548321562,392.059593349946 -140.12234017872993,-805.647012458463,230.01445339833958 -980.1077002085265,-719.831969526952,36.659304727473454 -754.746143855911,481.5372355084089,394.0314819905359 -404.96816797421843,-281.01769756048964,-412.81631147101325 -618.7223109570273,620.2267893583614,734.1446371602074 -826.4811051129425,22.68479772187561,3.0325893743992083 -596.5903579335504,299.9278615555304,403.9337545154067 -591.5853388722021,780.0106836351326,-324.0096862969284 --248.83409472011192,-812.036120318262,156.56028199234788 --928.1154524065158,-68.80396373507972,85.28926941515329 --426.91749574343123,181.6665211380216,-938.9995001219012 --925.3036225015712,645.2011213193166,-279.6187171774742 --745.8789746962304,44.48652010960882,539.9871061972217 --568.3579450063137,245.7809516380005,-829.3050700124641 --896.6365576627846,62.70926313629593,81.27024322021293 -274.859802996413,452.1826674453232,951.7041589250691 -32.6006966023906,-354.08705411750805,590.3723895374073 --458.3354974758515,-122.05715858872782,-843.0872373154681 --949.298513169085,925.2968293558502,671.9602410244117 -391.9484121873959,-182.0941111714602,-653.4113598583085 --687.1259146578279,-499.51420367080937,98.45332941224092 -429.19184540012475,320.39475343546246,-440.13220610811436 -909.7305613263882,475.79383339153696,108.70810502280142 -223.44149246870438,-160.79987514442018,-504.53802099768507 --288.0546426974769,515.6922209287382,-971.2130227404882 --767.8547189861675,-907.9947159564945,-918.5423953620598 -710.9211680220144,407.3157187600473,-51.652341825349595 --804.3316786979971,-16.768249766335316,-53.05645843886862 --653.5962601799697,-132.2967015240539,-202.9905312052531 -231.70019610443296,270.1873017352875,-909.3919804559109 --250.77477074705757,251.71983142847284,6.2725171601754255 -712.9796823766446,317.38726323789,-674.1311458371406 --858.8625051991403,284.8385564126313,-946.9773789167564 -171.55116254692666,880.4604828499153,150.94835575175784 --223.6601475869562,286.57643688470625,-83.49421901696678 -91.23357863186993,882.9296175530503,-227.79472439845154 -922.3811276478284,810.7012839121276,-608.4177304214071 --861.2773982496691,-798.4439972451466,-963.5563486969005 --811.1140784881432,366.0135468327137,-857.622703079542 --362.0487394124774,689.750621938909,-953.4561285283482 -628.9369651778716,-436.29045045320015,-763.6703447566874 -393.4743307283013,257.885693559768,754.9440270541058 -470.1420876077716,606.9618607696971,-435.930854857387 --645.1209124405543,501.2295032817167,613.669478534528 -981.0102840013467,-174.76464617714703,-255.9638284144337 -552.8259214839936,-318.3929194939643,861.5146512071294 -716.8255036860237,-142.01194524996333,501.7421355829947 -509.0857481693647,-793.7522623281347,805.1058133591334 -10.504744895714339,652.9149322154833,-359.90079793877646 -791.0464569924009,-221.59664253167375,-978.3246970394033 -810.7639528385273,-817.4266464277329,-361.37272481917023 -900.1239341016098,901.2142938751122,146.8757762465723 -263.67442433959854,-103.10895604336042,-413.5784566038709 --342.67090926016806,345.03691215407684,504.7490588753601 -583.1580874516972,579.2362855891079,-817.5877939026193 --11.159390594837078,-884.8824799667115,99.057764647471 --116.93899725324593,775.4083655165996,-298.16997489584264 --765.8659671447883,-714.0166358943283,523.0212634349446 -236.43612663252202,-797.7546477544195,-831.7863877700051 -401.93826291824007,-854.4739872716129,643.7201185807123 -412.4844543129925,-837.3024387162004,-830.3245718296162 -973.279157002351,-251.45840848775936,-258.7157058662182 -625.5991345150051,894.4971547677173,972.0021276457419 -506.75637051788317,-247.48082893816843,-832.9985666026624 -554.2938318548736,116.80849947161005,-151.5559815060475 -812.708770189472,-777.6050353876973,-14.749791418281688 --977.2927104651619,-62.6787160117475,-887.3934486363253 --762.3641674638561,-764.9475064457902,298.42060423212706 -492.08975853084667,166.73753019431933,924.3450969490839 --250.25884095259187,-428.5758274362786,737.1982563789206 --552.8083229610947,926.4450788812226,-975.6910506203673 -939.7576534152781,-913.6801760988478,782.2862273961421 -55.40221817259976,985.9295922386007,-852.4068705292023 -107.7085688026416,938.605071238198,46.19568834029769 -258.7972762705251,391.4973779692343,-90.91787046445359 -255.11616016812695,168.62862384620053,802.316020981978 --909.1072393170842,-438.07362081553936,900.8229681531175 -780.5275677818327,-88.68649442857418,240.26519560307338 --445.23763403773467,-623.7576805524774,-72.60319012003572 --293.2955439478943,167.3122237017442,-844.5307260700304 -948.7896153323329,972.4214889592058,396.3234280394902 -72.19273268824077,-380.94476742734446,627.5900394138973 -369.46234510775844,-674.7661213102174,821.8543689876849 -645.0744858463379,899.599826583848,451.4390167767199 -226.83039187157965,-163.51392741876225,865.4569667080266 -732.1277790008166,-909.5626597876212,-947.266051005496 --247.07326624390078,621.1066615636657,974.5522586298889 --699.1662177929436,188.2614307042702,-238.218286737957 -939.8287956292063,684.2378462714173,676.6574094222758 --62.61368041005949,-170.3609953246696,-453.1858561385875 --887.2490066981458,729.4447525101064,625.8020182601551 -999.4353465722611,993.2736741478107,110.8634112052548 -537.9748303610211,889.531459764856,699.2947813548228 --505.3037965136047,-98.91172937981298,-741.6811696970101 -908.1020545174447,212.34926890176007,-542.7143889930746 -343.4013688117134,236.2564809157916,-283.67456393431905 --772.884815600742,343.1463911855992,40.61540180758652 -544.6367834712787,40.32700222398671,704.3630006370802 -103.8136775489711,121.87594307077256,753.30720531669 --193.03426757520594,-731.9695430987185,-942.434647373322 -510.2745113472381,240.61910270692943,408.1595361984471 --574.0716769821786,-727.2570488264605,-970.9106686642361 --298.82488238680605,179.83537370926615,-215.51190980053536 --125.0501559525419,808.3173889874968,-303.4890659533993 -27.978978319621547,567.3060254822863,-206.91443535745964 -244.17340045574701,724.7274174934903,899.0412473152842 --705.8530381419241,853.1752503229889,-15.76741384092361 --483.51122340208326,-81.72848752347738,960.0651505709541 --14.763812014260793,-342.49677942498363,266.80170863345165 --519.7087624436139,-848.2733437826721,-742.2405561787016 --743.9083220844551,-696.1946129754112,-722.3456547011797 -281.7494896064293,-636.2398312017103,-308.66543335227357 -793.5768198120236,-52.07671947425524,335.1154770420544 --655.3602575967403,-615.4219623826584,-918.2627674670423 --662.1298738556709,-442.8193219360827,-645.9790314465064 --822.5949324858888,-758.7282577987984,-78.44246393454841 --587.332563188415,-271.46027790384903,6.83454170971379 -380.7896572587306,-921.3757203178021,598.8207978180853 -255.80077898181548,-836.4819361022562,747.1572482135543 -841.7448010636263,-877.8440802902725,-446.24470370559254 -612.4025595861226,496.51938076731676,-630.9579612872453 --581.3013533265794,-259.05579441723603,-30.954029617957303 -236.50954306059202,-262.17272086045523,-74.93056773370427 -494.9418762675132,-926.6335942188042,-495.1261113119585 -426.69917176910485,790.4136753743987,23.35488423133222 -64.2269705306312,-785.6559773204478,-105.1752663530907 -65.23453291004625,-515.0589927305407,-461.51353810123805 --245.43167379075476,-959.8576044445473,-355.84166883364344 --577.1039860069106,-345.0052956441707,-760.4757363614976 -781.05456147979,187.18490710809738,358.20463828897914 -578.3424772146766,-3.1156021418854607,-826.1594238251527 -74.21308363709545,173.6822360417582,490.8789483686601 --136.68090754064121,-744.8393944088725,-432.44818840255107 --273.8354072027298,291.8344826632024,141.55660933782383 --287.80654820430755,973.0304975859594,211.54963871377436 --525.546416528011,-796.4350547591926,-694.2817216313359 --508.08454323098374,-678.6372534808886,-626.8659518973884 --429.80966261230583,-653.2528094104903,793.5308492528504 --839.5325086767156,49.02277914050933,-179.20634602067696 -964.7572338172129,-775.9221956638953,-204.2888019085167 -938.9408665507376,731.0142517879606,634.1441418985598 --484.1943459101203,-658.2248252198683,337.2864398488621 -858.7519782551715,113.52578602785957,143.2253789397996 --440.0418126794317,538.9858663838738,-625.9125028849533 --352.64152719151264,-149.1271227671665,15.220757368910085 --515.1805351698395,-770.326350521593,221.24008488326513 --422.73889351948844,162.47644284522448,-691.2745694515954 --37.719796290365025,65.1788651031718,-896.3529263551462 --326.7914436121588,-731.1706461220515,-873.2500590544645 -979.9204647798904,-355.2923100505541,619.7488917092696 --490.7186904724723,363.0054444478585,520.4557197793731 -191.27748121568857,-56.8476228996833,-176.318171705463 --302.2634669140094,859.0582884956516,661.2388155754584 -930.0538213330251,-751.4055530289105,461.7349504072886 -876.6809136420757,-637.5338676686797,-867.007465266445 -482.24129858011815,148.94622635982387,683.6575535165441 --720.455246747421,590.5346237197805,-596.7453599045109 --672.688114268591,-671.4684041380142,629.1494404627642 -330.39444139240027,46.130849538238635,-282.33903175299497 -754.4010816262166,-215.10978515472925,633.1988789431541 --121.73018285956312,-246.11114115018484,-74.64042866078717 --397.2442516717158,495.21876035250216,5.440780184958271 --535.5746097063654,799.149146549137,-232.21755725357718 -87.10572222797714,812.9442219290938,248.47599182798422 --766.2039185832718,879.6642472269502,255.41610614283582 --330.18877068582776,-721.4558546732255,588.050378540592 -240.14551185702703,66.92218395264308,787.7851661019154 -577.1944224490614,-696.6502405344977,-376.5558644089035 --503.0217203710685,487.8925851453539,-932.9351305284413 -139.77936974263298,524.917371481381,753.5312735234988 --315.8365025681851,642.5146093440258,-778.7365260895856 -692.9045834690364,-745.0226753360351,-205.4254188792654 -594.5907315591073,-700.1651453024524,-541.4972095347171 -444.50513678613265,440.07307309214866,282.2952657705946 -387.8968889342,85.44888669519241,-496.4018821860945 --308.6080129921611,-636.8045663971486,816.9011226672567 -166.78358953224097,-198.29716647272016,-75.9883927117346 -894.5666792236307,-693.2971937678396,172.45966403359444 -11.777357768932006,222.90847086929557,-963.779632358319 -744.247817888303,864.2365649672247,130.2663671784178 -393.30164775378444,844.9987623545915,414.47726862679724 --694.9219141714773,152.57672033362633,213.43009276571183 --151.73865739522796,472.88847124944573,868.7340295380297 -851.1370258135526,-98.32125719173575,-773.5239083184895 -969.6823979246692,677.7961728918683,-750.6746375934663 -841.6837652347447,739.7927241242567,37.676114252144316 -182.55087148985854,-201.99459225973953,-890.4767223559373 --329.60551670819814,605.706897196023,-990.7359539907943 --333.00165661771166,-203.66261281811342,74.79120587584566 -839.7112328255209,-307.3080112680775,-306.0935962075446 -475.00249621949683,-95.5641182203857,-550.790354120036 --95.12096773461326,-718.2859592404003,-647.2260269875534 --3.264454521040534,-162.14910099090423,829.6918021362001 --275.21220176673376,161.17670055608687,264.52857583906075 --973.8110868233327,327.0747440334212,-643.9280662604972 -922.1406349389104,-702.6745444937741,-170.7517525459525 --829.3006638427123,993.7485036918947,4.390020662485199 -190.7700346400875,-865.8470452231451,499.92094079835556 --580.1888138088284,796.1085788814275,-589.7207190359857 --618.6245586726668,-926.9006643038102,-55.866109780001466 -129.68226652523276,-868.5827211432952,551.0552333900212 --93.42233050394475,48.78053865516017,-118.47450612354373 --198.473878249348,119.28066261643585,-689.519508138575 --636.1437390094577,723.5712420270347,892.2309242672654 --253.38136744049416,-458.51065371289246,287.9990864780316 --182.5316578038072,-949.2272886793103,-687.6948052676194 -431.9444576947951,317.84788382030274,-945.808014993033 --556.0556761341011,-537.8504068238572,343.78548719745686 --960.5789244912717,-791.7828360308523,599.8321707463788 --642.9106758913327,305.4922157037495,-523.634437906547 --801.1172144813097,-513.6556180010919,444.5338637113184 -711.3929362125714,660.4397291339833,-205.63294076309035 -336.1702731412922,-590.0314091683581,-413.7045394779735 -792.6716370422396,-973.9961529785279,-828.9829382910639 --584.2274897079453,-946.9355922523606,-637.1291298204053 -166.08312193938445,-157.1508988150041,785.3434221539496 -634.8871234768817,-316.3652966042481,-481.153133137415 --240.61518366546625,180.58988502961552,-463.87271835424747 -248.2978156982681,-181.17669561751916,104.09436170396043 --127.74694172936665,-411.0684809161646,896.9066139243134 -527.2115883195218,-719.773648467095,736.9359517958255 --25.137603500972773,789.1044537881828,599.7105118946304 --149.57299106153312,-955.0613833597652,-462.6452812301078 -83.26842932173395,266.95643965229465,-484.2246291335954 --721.2878518543517,669.8604735985982,968.8043614071044 -51.3803646053716,-656.641428303393,-455.38534696126214 --963.2186469050665,828.597613120998,-764.4978342197178 -153.0329510285071,-451.88955862558805,108.35600503158685 -302.84077670372835,659.4836074144032,-587.1574564787936 --978.008342683039,-726.2287398623855,800.0372836962101 -747.7801551250304,194.82620434061664,201.03372086730678 -330.07334909251085,-649.2574427531008,828.8238918499196 --162.45895021585375,-233.72294350100503,37.83541056567515 --906.0680664498899,-667.4332624878411,476.067232852741 --834.4026641497471,206.3042189327764,-509.3017806373581 --221.40877191604693,-422.6125264586003,-288.65456707010173 -438.091810368491,-405.75656875364996,132.80928059379448 --47.89919560180067,327.3423307252963,873.6594786495159 -465.1441944205005,-570.1192428184866,-937.6337298774306 --475.4719114003499,190.1558614005096,-897.1483730314993 --7.267505597527361,193.68569783377848,-331.5122183660784 -541.8244074916438,-786.8034937324564,-849.7244365283825 -456.3775124072067,-9.017367587603076,376.804792855472 --130.34532279250755,-507.1959335217864,638.2046353483995 -598.8317579379584,389.3929417088534,-455.7097255400746 -180.4613337381743,-278.0522061199464,-816.8358533467317 -834.6271509244855,-726.3627381620772,900.4747076416049 --107.98845408408852,-629.7341423227607,83.80189475671637 -745.8916717528166,464.4497728191225,613.1222957228995 -317.5667334214347,384.55312903570484,698.3913031306386 --500.66398228162814,-21.150072713719055,-557.5811163607955 -975.336015993294,888.1186793732265,-921.1463772629882 -411.1503450313769,850.4966348313317,-638.8493097453329 -135.89046110525896,830.9765951760837,-932.1080428284023 -394.8405344936798,-405.30198525489845,848.7923907530608 -942.1164903307356,888.5329782268677,-51.57156668507241 -724.0853019786268,689.0987970701408,-361.79905351348873 -657.8309483013547,-925.9847305690148,192.53975696410612 --539.9823254245939,-758.8662284454424,-846.0935967415817 -392.5775517562795,-320.2500724638677,449.5335430575228 --869.2873184021153,-369.41932433877935,78.9825847506745 -581.446329677927,-362.4949941358602,251.78275287401812 -771.9554964723743,231.72637636460922,-534.0810504927324 --951.1984368869239,740.1977478018598,-957.4611782992257 -749.4033453683987,57.874268054423965,878.1353970257924 -597.5664715473308,995.868221066675,-298.5763690965797 -534.3765778622537,-196.13817278151566,-40.248759392182365 -255.0109264367402,747.3542283726774,968.1669383985902 -536.5468277290363,-164.46643566533248,-157.2859954458596 -475.16460317778296,-522.4457084633952,-779.0517737372106 --290.7556847184469,-425.5220166918365,-407.3837590880198 --532.7844979001801,-915.8136207272762,-964.2521305331724 -975.4447794720631,-144.45373252827528,-231.34670568063666 -359.29456538613977,-563.4922242698717,899.9223679004506 -572.6900288311042,-821.177995375481,-164.83844843014333 -758.2366151243293,889.4640445828206,-65.19697750026057 -226.82277842141548,-665.9321078158496,982.337252273953 --536.6565972331132,885.4635482702513,299.2932979847369 -215.47358975771817,25.377022033017283,-538.6603765644827 --646.9439359889834,-559.0275818596492,-627.123475711491 -559.1689471335067,-299.74948166653985,-884.3146468732073 -938.2052602816227,767.5717699268514,855.5045663904259 -989.8156452928706,-652.2095015610255,-207.51596219468252 -516.4769514081827,392.0412361075844,-692.2081873202899 -631.6662499812355,-551.1188563266787,-552.3647703547538 -73.94884578682718,185.87986968340624,160.17241567562246 --817.0263252044903,754.9217252607607,-468.7999148225879 --740.9701574343917,777.4961597379545,911.3029964595066 -724.2552345309011,619.0321494497562,310.48396127804335 -101.7147412182785,-826.0264801771798,-183.09357385860255 --254.62296597537204,-480.4924324793476,446.84022737716987 --8.248529842458424,-837.9075681847041,-559.6335961003773 -366.5175273191919,-847.7382810193997,702.4138280975374 --9.706945972051358,-38.826845346703976,184.81556931903515 -649.3619318502983,-304.38158419561387,356.03230511812717 -131.46392799158207,-465.94345966115736,757.2599727103159 -594.8520432138562,316.90366931685094,701.1634581884839 -734.5884019196046,416.72595343006947,674.0266567273441 -394.9429233385672,360.28154352060074,237.2227564303687 -505.4332791152824,-682.7897894138525,761.7415183978569 -743.687055490464,-941.5054339308817,651.6335011295253 --742.2602650531096,-329.76229148171626,487.01651258321544 --678.4802079033836,635.9340482381244,664.2683559154839 -14.935467521672422,-987.2282565663328,-425.9237336501744 -233.85383675148432,962.3723560548469,263.62705403333666 --480.3928378716804,268.0114061992226,79.97075943171103 -559.6907903022873,-786.0387223460832,522.0558050040561 -82.53315735222054,925.9840077179892,-316.2556679226278 -265.2437862678962,864.0562110200349,-794.9805440186415 -874.4569744729022,375.7714446016266,-864.3258817896563 --398.07286610636754,416.34417729056327,-865.2987970624566 -164.34092035254662,-308.23388609408653,241.83103553495425 --908.5159323749743,743.0736123047525,946.9779383547939 -937.7557105713829,499.3036634858495,-739.8275197387361 -516.5263918580451,-950.826167082397,-955.7528969420055 --352.7795617009175,-22.71361919066851,540.8148356155864 -366.59075321301043,-108.19458724650337,-452.7466674366683 -994.2490003154223,-147.63739552805407,-97.22595134064909 --672.7523576166616,589.6190974998588,387.36445156297737 --558.4607744224793,-835.2379087683146,360.9986041494262 -309.02242856227053,-453.4809460035814,901.7271245008208 --697.8842164381995,-135.3303979147962,887.2318403351978 --160.54536614775543,277.051895328171,-204.81120407441142 --451.56959530266,967.9552959196565,-181.33198736991392 -788.1984073582689,-540.0907882178276,-573.7905919498335 --937.7318342309773,303.33365075177016,-262.9473125524777 -728.7164996792742,-53.580186616885726,936.3868558294434 --628.9489685937576,737.2463359112216,553.1937055834835 -541.8436892881041,689.5664562337754,522.0479818859978 -252.4406432628307,-737.5102446352248,-934.9476410174962 -841.6956956313736,233.300629041476,593.0745819523527 --36.95529697489985,-765.3836220752111,-749.6284155948991 -371.13057445794266,-139.38821020107457,-598.9505465993266 --16.810906517126227,-871.5821258497318,163.94280382879765 --462.0131911298047,595.1182012743764,-379.2760821528525 --89.55970183639761,-976.7589201837988,-855.1062244108823 --215.01288718663034,-40.12233056575303,200.04109623860745 --416.6748425813935,389.96377225308515,720.2447943784091 -559.7019777866997,-920.7623493032856,-38.98610548434215 --790.1396431636502,-515.9099682749451,973.3251865342929 --715.0089141969736,-2.223693097287878,236.31146863623826 -404.9299410882079,119.29736697382828,-980.4583051616327 --347.07738351201624,35.42328676942293,-824.2670017103333 --298.74613758163844,-933.5937824172669,-842.8430056899585 --206.15344759680784,-734.5684919138794,135.0816965231163 -378.9299382745314,601.1733982181656,-599.6995115103798 --665.0348354818605,-790.8643193311995,272.8604990872734 -412.95145297380236,-936.827710348716,872.4244924873797 --896.0574326970552,82.59267060214097,418.1210389018329 -741.9382474921713,428.17386426485564,603.4561661395837 --321.09961491438787,629.6502274930244,-839.7703072306497 -789.6333121210553,95.18475230747254,634.5955399249874 --95.36343096339976,287.15539039304986,52.805321872226386 -463.17904351066363,-836.7400359388208,-879.2958320188724 --505.7935319797071,-680.9106397736233,743.5671331844035 --561.5720252839114,951.7305116382627,-326.20841645778626 --635.7641686226015,579.3970142849582,317.4155510017522 --3.6085670937220584,110.7271018752624,438.40355654452765 --543.0905173374026,992.6678321134839,949.5863242935663 -300.6513726938738,-600.9150981417097,360.45648486258256 --855.6031820416483,-938.6949955883879,-484.6342229775727 --74.75408652136741,736.5450108167611,454.33813953261597 -485.413042399962,-149.01333110384928,-308.13001490607417 --257.92247403079455,975.2991274721157,-919.7816171750351 -734.062992244897,157.3508171447868,-122.76916162081909 -450.5153208302729,-26.662117150594327,746.8464761633211 -801.403728022517,-156.55814625308915,-446.3444055298969 -184.70065718672436,824.7266912333819,-578.6756219886668 -245.9331671269656,263.12044018504116,466.22604483056193 --736.8646297454804,431.64992936417707,818.0650413312819 --640.633782259516,-524.9133501522447,942.7901880832792 --638.0460945810205,708.7701867391584,-15.444287103930378 --505.5378511936459,741.4998025450227,-109.38948999466902 -29.63470785938034,-281.5332612004686,185.90170286985494 --672.9522548299544,-217.8369266964786,938.824644670575 --483.7331345977449,313.4733290825843,-349.61987155061024 -546.9462513732012,-738.2526785633004,939.6420901570893 --92.42091723272154,-527.8990733070721,-853.0065053399746 --660.4841898249185,39.54789711203534,-325.9936471374274 -657.766731765219,-138.22495267638817,-502.5714548247402 -234.28997320806002,413.5544337708916,-665.9161841981003 --664.7615674233647,-926.657146132914,472.804030131281 -327.6090552436101,-50.738248500372265,688.3408979383942 -611.3403059001064,170.7087287935044,736.5425610265172 --588.3175799264635,-776.1607612045443,-460.5007769660208 --885.8262878213703,62.339056002064126,873.211384589923 --921.3129186629807,-755.7801719799464,-95.60194343312946 -867.7500350558098,-367.687790046499,14.469617376784868 --916.8542818992158,-703.3135980758223,973.2602459176937 -930.237392872091,-990.1200381311808,903.6235708464778 -278.2398756310008,735.8365890400441,-90.52028873228176 -31.192057158500575,-22.306839486159674,333.7285150922087 --720.6974904873741,-940.0528202546441,-384.14011681761815 -409.36152547329334,-596.2930957541032,346.86486664983454 -939.824092214541,-812.1985684211633,345.20423645025267 --112.4995613908577,736.2845087550106,-645.7004211052282 -385.251904452329,676.2305792962204,889.2284389480465 -366.4960565792917,-5.650471983145394,235.69448040242764 -737.8099689574365,141.21949327765947,-939.2258806063263 -861.8973910139555,379.0535020631223,353.02677155449305 --568.6496952045657,317.7709404653144,-212.27118869168305 -302.4659540829841,-786.8139393840186,315.69060920607217 -998.8274515413332,-903.5759222788879,954.3483684426346 --186.1840785542588,741.5069006745182,564.770968116547 -134.03252197333563,476.89841850265293,757.0311226026959 --191.71935669793402,-345.9336768735226,335.1867711271693 -615.6918838825172,524.5702695532316,595.6272977172689 --128.833370374134,635.6684323500433,-759.5818892587831 -88.97819592169913,-988.4826790037569,-350.8283401994594 --267.07693025720425,-207.65461678148927,390.93441337972445 --222.88379745930854,-102.61275475493869,-524.911738251345 --253.49641674131988,-545.460745473697,-853.6081524631127 -206.89718676275584,336.4255971100324,238.98069201922908 --73.01191239885532,-240.42843964154042,726.6672991436506 -38.16357027243612,-41.63624474053802,-948.7158683871286 --317.50434474768724,-239.6087624282859,-202.354438206199 -160.3447384546646,67.20509345375694,215.81018558688925 -529.7665230842565,625.9714774321869,436.2461524529888 -911.0473919098695,-963.5348346472767,-608.4440286329078 --984.8742500437157,294.94942830920604,796.0610978999739 --513.0354068474014,854.0690895926132,-879.4652194208783 -868.8720536110286,-296.7546255207312,-797.158343101567 --28.256481627348762,-486.4468645589841,-430.25419607615436 --385.4200701474268,606.0517956653268,78.322553350509 --377.3846016879927,220.66756662183684,432.30134844638724 --454.7519985329325,-172.90179694929702,-756.2278133261049 --637.7013009306394,362.23570792996566,-637.1233046087461 -50.326767334120404,418.09252344486526,-786.2461538105124 -134.62443925780713,-486.8744325972725,925.8537504751596 --32.90870656015056,611.9850995503161,100.45308431252352 --913.1749342903616,266.3027511880448,902.8066844133141 -203.22364029266237,638.3777188535805,768.4129266968157 --543.840456102135,-575.9103201835467,221.96197770198341 --177.94306038659056,679.7226057334408,800.0462467960224 --293.1572413945638,-526.2588820510359,561.0510304877237 --450.3879289037278,645.2286370273569,-152.5234927024743 -335.0997985829408,-808.9293723306637,247.71864935314602 --96.46464252554176,173.21692635094814,-663.9715845102731 -473.74748988836427,725.594155086457,-566.5203998184487 --808.5708889596765,-952.7228279073272,283.943000886532 -214.18807217756148,93.39482542813994,-536.1058077680491 --218.18800818897068,188.95267037234612,-6.466282281661279 -975.5710404297747,-727.1204948865337,390.28910809518766 --191.36246379141573,-143.6007701487705,435.1955313163526 -384.8723026487394,982.5119874043767,-743.2114210917496 --791.7807012316673,448.6776342574824,156.77383401281827 --451.6786668803883,-841.1612620220268,-828.6835008071389 -788.3817493282365,-616.2653505625142,-353.2568757689585 --546.687195546024,-290.00738833612536,-861.1523145078132 -38.11958181654063,-864.7748728155702,600.7130156447231 --532.575836179134,80.02382920902119,760.1581751229164 -301.75473809438836,65.91557310267058,-351.3324937692488 --333.9961738836041,338.97391039638023,988.278722442335 -323.6783796987572,115.5668347400499,461.3010204784921 --69.5887754325637,-879.7153147984295,124.59363175581962 -915.2505690107605,-649.3941152846808,380.00978164133153 --598.132622681887,71.65536894616253,-806.6471007065608 --99.25812748362978,512.3266577904922,-304.85695152203584 -329.82344897443613,590.8999215794584,854.3556389589053 --530.715836289093,-201.36816838138373,-695.1679733391652 -984.9670043167505,854.0019358485906,79.91426056111914 -684.0665887528426,41.91595454408434,247.1713760055195 --821.7511357679667,510.5408409936158,-744.5730327295304 -652.1352605050567,564.0561753407717,417.48939548595285 --927.6792389504758,-393.74328810934276,-473.77486017831427 --279.72718505696184,-824.7145064723229,873.9156460621255 -107.60448142475252,-388.95137868395295,-206.03696585143314 --105.59491899032867,201.18866672123454,31.358855392995565 -838.7839464288347,-6.073034188339534,984.3160296466253 -702.8499154901915,-582.9789712853284,861.1904292878326 --767.2672042290478,634.8994169823832,-238.7534130468398 -755.9486408901391,736.1133802149006,611.8508002352423 -580.0608726141227,-390.6417218039185,-838.1614338974956 --194.03964246967712,-652.9509700269826,389.90217780492344 --307.8005469244289,951.2204017198299,281.94415469066394 -644.9611272687218,-734.9506545163031,724.0289645452451 -845.5143810267887,-25.876162362128184,212.50587550195496 -529.6196018059909,-650.322745479175,5.132152926884828 --202.67394445537377,-707.2520156755018,-264.93115541693714 --863.6553812290128,-948.3761861010261,-729.6674216903546 -926.2302231783476,99.05907179003384,931.6443223064398 --135.00424333973604,-376.3677338294808,12.283725680488146 --120.97662273417973,-788.6706314765122,281.65262938041246 --567.9236349808008,239.1759097956592,300.40218479630676 --695.9502937427037,-877.3007457786637,561.5231721368796 --80.39915246135968,-883.6724089890484,989.7326343395343 --884.4388780072667,390.07045771710636,967.3578505268272 --521.6397915681488,-715.5012626256076,-757.2301211551422 --393.44970486480895,-797.9083779787067,384.32268338826384 --875.4164037398746,18.844256299579456,993.3937077059536 -627.9405390120376,230.43887646202188,-387.4927584267766 -247.79167258327698,54.08292782330318,-147.83323221925707 --738.579246519601,773.2084304809334,-100.43070235735502 --610.7549763584699,-264.4812982454208,-171.74049494214592 -655.0757911337487,467.22876112280414,538.6097872826797 --977.9374711427056,-167.69200364047697,-37.311696729352775 --961.6154463538867,-480.37358250993157,520.57964624427 --725.7805885420019,70.62026290518338,-569.596255965525 --975.7584507122134,-517.5970848009171,951.7475098201076 -603.0742237659792,919.1532886420669,-24.29191214727507 --780.527602644993,95.91897794738588,-91.2453308800782 -688.714165479232,-803.8348384315109,-23.517725956443655 --699.9026706120314,-350.64814621988,474.71415477559935 --47.9637412624669,-248.22342970846137,-211.04744285992933 --81.10646318802674,570.0330876741139,784.1693778804688 -910.6693730078566,573.8067725105902,-369.1862085039745 -376.2694121730842,-124.7937518892162,-490.65875590789767 -681.7431588518452,-923.14730207535,803.523984270847 --77.04507075053164,274.4029536165608,318.7078444115655 -790.2354814130726,273.33936433441454,227.86716952012353 --866.6959188786201,36.81604389040808,-699.6619983659167 -474.86753744297107,24.443841625349023,360.4555584167067 --916.6541987952314,-830.4159679083936,432.64677612536457 --855.8313280026532,-857.4865444694829,-975.7830495302251 -913.0027965989602,475.0167189180138,-293.49718299587164 --406.9288374246895,-300.59354050830086,549.3070623623637 -322.74122214082877,-629.6088642650641,-651.7813293318313 --803.2087005732053,320.6054394026762,528.7453244434719 --469.907143349992,-958.1100779381744,-835.6566650471453 -935.7200696900609,-409.1104450451595,538.4462956762673 -249.32713770852752,-236.12072069420822,-588.6254756088897 --757.2271636811871,230.02593607773315,549.2675612755759 -287.80850708226126,60.60426649831652,-916.0975531367275 -936.9775551887676,597.4283833091492,-414.3559265980705 -959.9406587177014,203.76317927264427,164.84531641449303 -496.1463588590643,623.5395761802752,312.9572146630053 --743.8085072675999,-323.46498801100324,856.1672806520994 --550.7687763122962,-255.66595232497332,-135.84623411160806 --121.19002061109563,225.8791649890511,886.1516754894153 --518.61457633499,-756.9972473981638,-605.0590202801254 -773.849800418539,291.6216253104121,-428.1864215216798 -631.8938779372345,722.7399927268721,693.028677380556 -837.8530672791089,-495.5179596532768,510.0838574925565 --78.92100545172002,683.9971057801231,456.98135432322647 -552.8948929994492,312.3236753621429,-645.1424610605862 -90.05383779387671,969.3394790490165,874.7761329942377 --913.6525284059767,-670.3703685411258,-736.5424530908762 -451.95981997059107,635.5706597138901,-572.9772673786562 -11.705385903657998,681.4060560224,465.60308953250114 -84.47441098369654,180.6953809175459,16.721093832559973 --404.90309736235884,130.04398571803222,377.77060410018134 -746.6458317216154,272.58270795849626,522.243074086316 --679.856730090854,-76.88505116042018,-981.3367603458134 --506.642270956754,452.9234302260097,983.619902698727 --801.6438008255682,-197.01136827742346,600.141937398319 --591.9287307422023,110.16989860457238,466.1425920593497 -231.9709005203581,-623.9505307691677,-289.2308626285212 -567.5835689707944,108.45302826403326,-989.5407729141746 -521.9815200561877,-929.3772901195218,491.46756546246434 --595.0388796695252,916.1469602387604,-264.118497395831 --346.1367673238418,-702.2238993351107,-388.79156901957026 -753.3015236564011,992.6686752544947,-263.38093898630336 --102.77873809091489,444.141876405474,772.3915609301491 -186.08866837356823,-216.94860364434135,-174.75631830275256 -391.2362929936137,-993.5634727914427,239.17867491968127 --289.0139791172852,588.3946625541685,-814.0187203537357 -176.404533896781,-38.05422022775247,284.6510518104549 --870.2928110340633,159.96757485626267,122.96917591904753 -121.32018883234196,206.9753331929096,352.9358744527244 -609.9779993615396,-460.3585597435713,650.0988203601241 --3.4886354730926996,-845.8834417313377,-882.8981415120415 --331.5233626078784,569.7939542229351,415.3618694818315 -577.229929344813,34.53811288321867,-119.60200408901892 --705.0949465874321,-343.61449278137695,-131.9612676522495 --822.7991406407655,-558.7760945775775,196.45058812747766 -471.3262284783798,996.6950227858993,866.2266626871153 -285.13039907038296,-157.50389341185598,272.3547294164655 -571.3032361604639,-763.3276181532253,-180.1902206074235 -679.6045712712344,-232.334096133912,143.744542454373 -175.5387217243965,-631.0474937327213,-275.5291166954232 --330.9774225161357,-947.6065829358704,-951.6164722172895 -663.3940873515469,-453.8583800543752,36.157532477630866 --402.5488528224539,881.3584902306811,-481.40648226845246 --140.68637452212988,745.4605009692036,683.8671335836173 --627.7971643074454,605.2866195914207,-83.62622652421464 --34.0622558292896,-733.0400551681124,-838.7969724857508 -455.8786139475303,-7.077695289400481,-126.29859476964089 -459.01645730479345,531.0257979822195,-682.1836646612928 -220.4502989552825,-729.291835444629,502.75017205809127 -313.910312534279,913.2292421669158,-862.0839672871576 --885.8905576974913,-435.6258506135997,-476.5886325281881 --506.04240185600037,812.5091610420734,-500.9076003009878 --456.10054774273806,518.7965248359274,-100.52031509892004 -553.4211139103625,-869.2676848712294,-24.8576126532314 --932.7727996334347,-874.693593089291,812.874906688822 --721.5092577648097,64.84136455043426,-177.80879479858686 --305.3133474823146,799.6666913745448,-956.353206449021 -327.5793723511781,926.7888684271009,120.33636692368395 -873.6449240661836,-895.4842414279525,-162.41336185167722 --479.6844180758977,461.6419299614595,962.5941809944934 --486.9398751115044,308.349202948149,-603.8047344805198 -130.66050914321977,-72.13502662332758,944.0106592630741 -217.05454539293305,-300.98725582636246,-771.8084302241332 --697.506342530131,-549.3661400975298,-498.066677319404 -701.2321156822757,122.4455765650498,46.78182274873279 --770.462256261565,720.27938669887,445.6286064169674 --864.6632761999969,415.67019445953724,87.07643468529204 --836.5493085064435,-83.39871694268709,-30.607425739906034 --668.4509196734484,891.3962940005647,699.9507429613238 -338.04467465821654,-75.40887799878556,-176.46891683098295 -301.9469343019084,90.86373881381087,-875.4537882362288 -25.005297540663378,612.8072344656789,-81.52024480608384 --896.0868448914632,572.5563987680662,-597.2724357280513 --482.7583302239225,-670.5872931354082,-339.56987025700494 -513.50301137727,38.77171900787471,-590.2374516985749 -755.6601563040817,759.1637099030584,741.1568500920139 --522.4075772369215,-97.5213116380238,969.9793122817503 -544.0249526199807,-945.6651575488804,-869.5908174790159 --72.13724637533448,818.4404117231204,77.40359590542835 --4.374983931419592,-789.0526000867388,313.560209448588 -644.2063212004509,-239.15998498487534,551.2237018506548 -928.9533078016232,-592.4670817446217,46.65926238948259 --425.72408383084894,585.7088380676787,155.18673176231505 -269.16483510060743,595.8283192317881,-208.05905467509024 -830.1801368140864,66.0577344922799,-684.090354329304 -391.798236337605,586.5227008765089,-366.4766458649467 -714.358513997506,812.2865095315328,-446.1910252443821 -967.0429454304442,-718.5769439024832,-595.9686631950201 --631.5503215239478,787.9794200157407,308.5851046499238 --695.7914335554542,-119.35316326330201,230.59605013960413 --833.0718300212334,764.8327368146774,607.2070708830704 -10.413547153276454,934.2532305183408,-164.47804144980057 -968.2206380729956,335.8399976072542,269.34254650788284 --668.0902094084299,763.8555166092879,-145.0206241587697 --675.5331884350412,-974.7849600484819,119.51136727676521 -54.79924424535261,438.70724473831706,780.5161060356043 --841.1868307139409,462.9929806807247,-625.1761118048355 -716.354106314328,638.1270277233123,81.58750997108882 -420.485597246623,-371.29977363250316,-57.664202134370726 -643.2737954209433,-81.46960565357222,-284.40346934911645 --11.575105499400252,656.4985048744368,-329.5839052582545 --652.4768137285124,424.0280406615616,651.9564254161637 --798.7250429529333,-520.2517744881105,-716.0560204780122 --304.1171768356668,-99.29804218917468,497.65267392661303 -302.2951697633482,241.8571349568624,-295.2501067806912 -682.89510616952,-57.42566520367086,958.209876030309 -268.2842765914736,-747.4705168709945,352.35512415086805 --349.791969136602,372.6543933721948,-860.7177036751885 --650.2371256480812,711.4745178115727,-545.6408859529702 -674.0822504858802,-441.4478230911791,285.7638201174152 -388.30114701966204,25.3095062901059,-389.3786466065375 --574.7112472578078,-933.6212908751476,-392.1071975185524 -306.325581062566,876.6096368969654,742.408964526104 -532.1295530706052,576.8946865065973,329.96980695199045 --479.426284867994,814.3900614116596,341.46462381166816 -120.88126196087978,-778.0210615730379,-105.88891238714916 --79.2834575961474,729.1272190453399,93.29644037557705 --239.19890205918068,953.6006570213187,-778.5588133473686 --154.90314337611073,-915.9506496571894,479.8082415338606 -836.1531043983014,-439.9253408990211,716.6833535982419 --415.5635390762045,821.5403232878305,507.9238071935679 -609.8135536828772,-963.986888799091,925.620714148052 -453.34198414064645,-390.49780922773334,658.7893297176938 --436.95760317014015,745.5076791322558,-774.839219176126 -407.3719549215914,81.39695328982066,-806.9310596091184 --516.212343482322,-975.1919274453704,-62.46406907098833 --397.4694784799992,196.71496859551758,-405.5243845827656 --400.16177698603065,486.3863974632068,-903.7143280432931 -805.7899903839746,704.527748782363,335.609366452813 -186.44314021476862,784.6049962793045,-629.3396409425711 --842.0616756183427,-520.9796601809238,589.1565574003805 --930.6594665470334,165.61367016697932,990.8750323826198 -711.3921876750787,42.891378087178964,-872.7181814267153 -662.7470287714198,197.95701635442106,-770.1340058808663 --812.2854303532877,819.2536388731849,338.40052587615696 -658.573598633511,757.9578005645346,143.5447040966444 -34.89270351008258,-139.14517935801962,-366.10682441776146 --130.8080782825765,547.7593114603128,203.84686203026308 -785.0465799096921,-113.23997124162452,214.17915743750814 -262.61510618397733,183.39432461265096,405.26754617103256 --525.1330632503875,24.72755509158128,-791.5503943833046 --230.97734471037495,-24.66586275747113,304.44851909094496 -901.062105172407,201.3021330967117,487.1878323531196 -12.532118990405479,268.2080627526627,-858.1355677324532 --491.21683831630605,-276.2938135897226,-55.013289986972836 --908.7025089952325,-719.9518048933646,-446.3713844173884 -943.0653818021012,-337.30598579389846,-35.91788377583498 --607.8045745232141,221.5601421515364,-438.63356896805135 --586.0148431231464,33.14525689195807,-988.9884016791584 --984.6719347015494,-561.8623817962845,-926.5572749983577 --783.9484917386172,-322.2787013224968,605.1713591596258 -144.09728673860172,25.335451912832923,-413.02235358375674 -863.5074388656328,-205.96991752561667,-825.8144664084571 -234.1330322356025,-772.3232130467972,-309.5537143966159 -14.82387743561776,748.4450493703516,-12.90683931976264 -404.5175320633284,985.6336779981407,-737.0217602040368 --450.536948960961,-210.84784880470716,-156.34364292233727 --177.95784946890842,815.2220051131098,428.06528893371296 -215.8104281814076,-381.2545642744358,647.5807684425895 -910.121022969978,642.396565100453,-996.8697896170542 -272.8027403668141,-897.7292371157986,-484.7855593325563 --880.9505993044567,207.59090589877542,373.1798269852136 --771.0247238681898,-232.32223391004106,-87.52698208891593 --261.89395647816684,-757.9499990296139,-162.10441962504922 -502.3560956168362,-857.984670933489,-839.6399718361931 --290.4574163280315,883.4514232378501,337.1452934458282 -357.3399133451296,-276.16001832427,187.3215824170768 --979.7376319445133,272.19209281908434,826.5738951524734 -225.14693668963832,747.3971869326901,447.9461109321876 --758.8831671926196,804.9066145716833,-867.1123112884502 -67.93494509552761,-715.7257524130846,-976.5867785381919 --155.93147974472197,-409.91858469168756,-27.999012404793916 -154.39977346910155,-912.5218553821053,-753.9934097525088 -117.28479290085079,-313.6652936546835,458.3469750988959 -304.58329718387927,691.2087259798136,384.9856533384507 --140.13784521970376,345.93324478886484,-449.237651489163 --387.3730024435746,577.9703198415866,-107.1609671968356 -596.7606810367049,644.8447473365568,715.1246753225676 -833.2704716824146,-138.02955897340757,-362.2663633577223 -164.39749318822783,-257.65515312474486,202.148333600466 -411.1717252876492,376.81003698427367,-250.89422595975725 --666.2795966024944,-138.94132307558493,-714.8117118361826 -780.1940703676166,-308.2450785242852,-691.0805055533524 --949.1044801884982,291.6447725729686,273.80463490948637 --318.79166683741664,-856.5762223046979,-180.74221020953598 --377.56500987321283,354.24127947001875,211.5584989053807 --270.81254360492005,-564.2148914900198,976.0719323111837 --91.99675760777029,376.5484715604741,-718.8940648432784 --28.820600681204382,-944.926560261069,10.910235820899857 -928.0348142354046,-231.58657402839958,-922.0079748501769 --938.0884181613129,-224.02648010626103,-679.9501270736118 --953.2958073436282,512.4272279003537,-82.95398223621862 --421.51045605469096,800.1663660329614,-767.7220795989488 -911.8376579106384,-372.0665652452943,776.8073446173626 -205.88575295892315,653.414719482975,968.0263264209286 --423.18912436250855,922.270970815186,-221.03621019515924 --228.9761905261554,-319.2257914909886,82.81521469517043 --691.7099136430259,107.42297071602229,83.40962482000805 -523.80362520974,667.2999238751711,-119.1172993751519 --395.3335012970125,-481.330205365811,-610.7523265902562 --884.7048356019502,-315.1040423305733,-459.5046157384335 -932.8347717328147,115.4176525000878,-305.44592193898495 -160.93520198739202,-721.606597308609,-111.91250159559422 -252.46864284212757,-22.20433641509726,-196.4423986913515 -987.6967777993964,760.629524297854,246.81191631888032 -138.75472236456562,241.32095964916812,-597.3757843551334 --209.7245134713628,-921.0809342182014,-48.907925026346675 -86.04916791532628,-544.5005277935809,928.0576943310275 -818.909221874484,444.28647091181165,66.77325753072523 -739.9383192953699,-738.6953123530742,581.0195885497699 --750.3583720663034,588.4213250988109,-448.46486349728605 -754.1811620363778,888.0841876507957,-702.4080611897687 --74.64878986921292,961.9747563253702,-33.18512805370676 -727.0950450290902,177.46304426263964,-249.3401841607963 --428.4328889482596,-593.5538178278255,523.5963827553944 --226.9189863539442,22.550924401502357,-15.349039997636169 -154.55805846626254,731.1542912491045,961.4786871668589 --184.83158285236607,655.0378442126062,529.0555893094354 -147.05790291114658,912.0942872238661,-599.0509689431944 --781.4715793807571,707.9239339108442,-121.70036673250343 -693.9377084141208,786.1804103908298,-875.0848127618572 -766.9295259721214,-103.36188926115562,20.86497800846439 -253.18502218642038,852.7652134601735,-961.767811140472 --46.3130633643658,375.4440848611214,445.413915396457 -385.06486307421596,-731.1297411837563,-401.2088232566375 --282.5689491659731,608.8744153590101,-442.480255170894 --578.5900722655937,914.8960380761923,-982.2734297730622 -995.6417113639563,353.64259771479124,656.9385988982342 --410.76120730761363,-971.36944466588,475.73903712306014 -668.2891940013515,480.9522639070383,-714.2994253983228 -506.8558445139381,537.8455642152819,317.0810313401098 -532.2318655911724,691.8428793554642,227.20822847491695 --822.7905720606418,-24.74438066557832,-844.7013306567899 --184.91393793513828,-185.78702174874468,-867.9803117195169 --302.3589320610414,-778.0038024173704,616.4704200184444 -895.3760519289415,-855.3670494841228,910.2304145834028 -45.15319867349035,-400.8686440922522,-846.275849447673 -1.248536140835654,589.0310889814973,414.17295453339625 --899.5479770720525,-854.196329264193,-194.25343473472583 --409.4190119041134,-535.2313538879043,-437.99100218257286 -606.9654865937694,858.4561072637077,-189.79461094486715 -812.2220042649942,-357.00859750423604,-47.126027312416795 --547.9420043680005,280.952084351688,957.9622303496178 -206.98619208675723,-284.3718317729023,295.63489198105685 --754.1586430692248,777.3181605307973,6.167901559672714 --101.30051592071584,171.72957690703834,249.5677255788048 --856.4483875469739,365.2344424468049,-516.1366393689409 -427.9052650131796,645.0695887683935,607.9170151050405 -105.00193481577821,40.339784621502304,-714.2480773211765 -550.6923008062711,-457.1812391065713,-6.609154364106871 --431.45181414496653,-732.3432740006137,259.1153937834731 --891.3359303541923,497.29046825239993,-364.8264094777667 --999.7306139910294,22.258278474459644,-906.2961829447937 --447.6608843582011,413.9529749114324,-874.6207567562683 -678.6769847120047,-992.3601546828338,-506.3522615961955 -481.8081123041429,-367.4597005413864,-796.215223867973 --279.5321623991442,-459.2134272309489,685.4238043211099 --373.3041648297137,577.8649435520144,783.7442896214695 --132.36516084694097,819.886287708784,-245.36389207361435 -928.1568329802164,-821.4209509488542,374.0385330064855 --12.371919086142611,-224.7023890887059,265.4237574972019 -407.7141832686623,-991.2734606993819,-666.0938225056026 -426.0921012686374,332.7708271564129,932.0950102573545 -522.075580501566,901.5454154626761,405.08100306961387 --403.89558272111367,-789.2701554982871,563.6477266898712 -288.29844295183193,-903.6279752134076,-279.8990681980433 -913.5996309685722,0.8022914204024119,-134.54172796059072 --84.60078968141204,-582.2345519896726,-262.58565827040957 --260.3734880256468,-895.2899596250552,535.1352570358365 --166.99113619224204,644.3597736328466,700.6960022397907 --576.0118906026839,314.7069643402572,-55.4363916740366 -760.3134758429701,-568.5186416470917,355.62640062008836 -215.50424450544506,-409.39704485633445,-726.7981926976547 -303.27952095455316,477.1949162646613,-368.74531247330003 -289.66520804462766,-209.73818477699342,426.4137665652354 --601.5694502118938,780.4300052723488,-425.1808070688405 --264.4280244876942,-883.8160958393005,-776.9755753574473 -31.723805424656348,-464.81464654405704,670.9604514843888 --970.6132226900924,-241.8119026561276,-325.3089064618147 --961.344738164798,-751.2632019989795,-172.7146501627294 --14.270831105106708,-191.4205054902618,61.87535682418775 -190.263349811363,-980.1523577443287,-71.80968109299226 -926.9984817751767,38.064560259097334,355.08453491790647 --376.2722841662336,547.9827563055251,545.8429637522302 -42.592095308277976,952.0276465584273,-748.8995704746933 --966.104670220838,540.3164235141919,614.3110747297651 --759.5855417588475,-468.8343340827879,-964.8952732667422 --413.38277843887056,546.2837478373431,35.921055425157874 --303.80881366342385,-256.52141018733937,-997.2927485690637 --400.39894486952824,292.91748327586106,948.3888876327142 -694.1216539677989,-952.8100707089418,797.1212093496786 -566.3968265972519,560.7522471419609,-84.00848199285701 --203.9894140909944,-394.1685423336147,-868.6102820912685 --543.5292730126018,-506.79273004395077,-31.845860579596774 -494.88881319338793,-52.380343204106794,-884.3111011056787 -915.5796019764077,885.4486381882245,570.3790862968167 -982.6558031284412,88.9646656005259,925.5367005064122 --848.7899187664984,-268.63850347725736,-549.2374639864684 --608.3338317314599,-718.3941022146478,244.82728313199323 -562.6437114946102,156.59679884072125,-706.0745808235806 -622.2475398669419,271.90941432745694,-223.66858774600894 -348.26059107212586,-480.1900415143343,-309.615583011579 -834.9716862639805,-418.9909886571593,-60.023463684126796 -780.2822747920293,415.4427005350549,-875.5935476705945 --705.3939114420593,-984.3168184561664,261.84358045832687 --104.65314917916339,-731.4502981954489,915.8682421135409 -59.31944789123986,-516.2134117742216,1.207142309415076 -359.2406654702156,-847.5215640528711,-450.59236990421607 -613.9309817679873,-80.67025919467756,93.15428406458977 --134.36799558106145,-912.2001147139897,-668.5004403596881 --108.91672251621821,-581.6290691841443,-900.0419426806425 -687.2993281036474,962.3850583282317,586.2857479934789 -707.569843409334,-516.0457393659092,921.2539510263996 --606.1485910931433,902.8596207236646,989.6385879319021 -423.44561149209744,962.2874635836438,139.07955913420733 --480.9164336478193,-126.0082286687583,187.12187075757197 --853.83687594597,244.68652923449213,962.3556735245891 --619.7847004325447,585.1902325767667,815.7975875592388 -887.4031856404417,920.2712088108944,42.919277442943894 -954.6158159830075,514.6204142688778,-676.6571275260762 --46.19978706406005,436.6623507440079,-505.3193683618333 -281.23036709777466,333.20095809323857,-674.6005123828681 -130.17062490551257,543.2538219572155,-2.2086709281161347 --975.7937664477852,-981.9230618414157,-285.94131205997564 -852.3881368635639,-542.6464407927824,268.7273777433743 --555.8482586133589,-356.6600206809028,696.084179202968 -457.7228845398938,-809.2014453735787,-142.59595802713272 --941.660472709471,-38.21970679398203,324.86802340213626 --762.9947528036969,-422.23012218166866,-204.3267489956861 -839.0620493120996,986.510030845928,-910.1774020087682 -522.015846990784,-256.55186719531355,-215.08362754103996 -508.5299466940453,836.8528642908173,901.8571890050969 -154.24517207664167,-285.75768139899435,575.0981717175584 --497.99723347539947,128.14805766703557,-282.8430769502537 -313.2621474157522,-519.2021742129862,-616.8141085303484 -836.4781733508742,-796.3926341009262,11.915815469863333 --558.2944340739822,-922.140073348665,-927.9623634171472 --649.5564557883454,733.5407090120004,-435.04251204594664 -900.9183411505915,163.24458597838702,-126.77162046246781 -160.17766933890925,33.39677045253552,517.5525075146504 --435.0078680542955,-293.8992167993953,788.1886050665014 -892.913026300811,785.116454972949,-161.1040120853728 -560.7310060137634,-47.3285333978024,-4.920295707795617 --590.6397818854321,182.260606517033,-627.7282044933041 --336.87060186561246,710.0604032398703,-585.8483815782895 --857.6834296531343,-861.9848147743674,881.5690410062159 -13.840875923669273,-181.17585636596334,621.7571620158369 -671.6518558210321,-335.61793376879075,387.2361149475905 -542.2456317037731,309.30137373190905,-696.8098503998012 -751.766167034114,78.18910547201745,-435.0551472599926 --149.54362912461215,-924.8578192021853,-744.2663975551649 -531.0935010317216,-999.9767304892678,-166.8683430354156 -45.020362171176885,-890.7311599980554,946.1563259446657 --547.7493375006561,-391.60256072743823,-392.1149754899453 --539.1666757653002,-997.0523558273771,458.68958817599264 -933.6909995985707,-551.4130334299099,326.09438360684476 -483.79265391743024,696.8507581810495,-154.7416059727817 --394.13818871914157,-349.4097319539378,425.24266619702576 -633.5589330112721,-636.7720644867948,-258.11798368446955 -803.8803934983,613.3870393894786,969.7168055249517 -508.4965193641615,-213.60959794415544,181.27566798927546 -322.0285084946406,-843.0883673657521,88.99391820773008 -418.6416569452192,-665.3573919978792,561.2634348511142 -167.54556102822335,904.4435713951893,-915.1554035862166 --469.34772488906606,203.10775859964815,-406.8801755881386 -428.84832814248443,518.010565043862,-794.9680718670511 -27.708928413535432,17.781111182111772,-261.4384595689179 -865.8497251393442,655.0126397464423,394.41876381927364 -428.65327146999516,-76.56771237376176,841.9890421931518 -389.19085450657076,457.9621233116329,723.3818075746906 --451.85682131561805,614.141807733406,-609.518794087016 --309.3160955102243,-328.7790914603146,957.0509367782811 -713.0744474958537,402.3397231805195,454.1135232307802 -124.1455888051421,894.181334217038,-7.482494235276931 --238.96458026021094,-673.929326136818,572.4113045221159 -468.88786415118284,-231.2899229517302,-949.6131720815413 -677.9946554360215,-977.1640330918527,407.3995592581018 -940.514219452114,-124.67734370359312,-530.0531900080945 -409.74202008676343,634.2562840311703,92.8606321556947 -934.0705505122924,-896.6625566840778,9.591196609056283 -436.9078946451002,725.280942298358,-641.48877618442 -600.0069635273628,105.4141514370906,-206.8926360200736 --736.5699428418129,730.5915178178248,-685.4535836405694 --380.42428158180155,-419.90893607512623,742.8280683817086 -345.4059884177959,593.3627943827446,-499.06420241500206 -249.74819921399785,143.49196628749746,665.6607535765422 -812.1741209625211,-975.6864570452263,348.0398381175853 --896.328401760542,97.71733015471182,-424.73454191264364 --386.44680095571755,-294.08299309528684,242.58489809922025 --331.90006866246154,465.39810118056084,-190.94522885226058 --863.2935993800827,567.5196849682145,-428.483350814588 --134.46624080147478,370.887766443803,-335.087685702576 --886.8286877065688,-252.15790597437285,888.8971653886069 -283.46879459711636,342.9582973344138,264.5643072752796 --602.0157220811263,-163.33227179543974,501.87959672663646 --797.2542048936817,-444.29444782057544,-447.36178306829277 --135.96214481098798,960.73748188437,-864.9949066323561 -37.40198876119007,-641.2706359755791,941.3530908194882 --773.3929905450716,-192.79799527681746,475.7699696692123 -409.10885605489057,-154.54272621213545,-306.9516640945635 --204.7752428942589,-471.44747368272147,-589.3341225864003 --33.920604882220005,-462.93248786478534,-425.0766702054998 -313.5121269491142,937.0746633997844,207.27440111875012 --846.0410658700674,-848.832772291866,902.846441691132 --405.41841938533275,-815.8660278350492,198.08917430076303 -247.29755658053227,297.0096402373763,-465.19594428491735 --969.7786315710499,930.0307389089437,-498.213908617795 -352.0525761050949,413.2597397574191,220.01483415897133 --374.18521157270357,-457.8074924718685,195.3365654054062 -732.191267223383,893.4674578467911,-788.1883911924847 --690.3427748045603,889.4725175661592,473.07045666958516 -765.9876496595462,-594.7347317293137,175.17174221880373 -402.27918883494726,360.22377089394536,-183.69661826660376 --969.210216617383,165.85211360852622,-493.7969216407825 --99.49150771421932,915.1620301676346,-201.92936471513053 -679.6032133288534,-622.9187885014977,344.92099605005774 -954.0139088778869,-796.2137982541265,-983.3601155456159 --132.83441473477126,-814.7490338972656,496.7686993524628 -829.0973276971179,-131.9580545824823,-482.57671568911803 --131.19336198678047,446.895635700002,-981.891676839258 -178.90797896939443,226.583369774758,275.3764937918711 --515.9558400382456,428.1054467562535,-817.2170273364472 --601.4593270663984,754.9400933089639,477.4463014531327 --972.5088919773095,-503.2474792603996,-571.1870340136709 --458.3873439260549,-504.8804594402272,-874.9474085143086 --82.11896680635937,465.46694957233035,213.46344943487293 -345.7433371961595,-837.7016429275217,902.9814203535743 -676.9836676860498,610.1806369913254,645.967610083535 -865.4210162655227,88.50793222739549,-599.4359642647482 -233.5672157050824,485.76298733587805,475.83478670805084 -42.898048333760244,-863.0825613328439,-257.77412313974435 -841.5332169267147,168.89781951485202,76.66388651142688 --462.292971235613,-263.10216016684217,790.6921783063385 -332.92609505367136,574.7740535046657,-91.30915386468973 -260.4944389123159,-503.23278251358494,410.9216605669726 --144.79733259332534,-114.90897037050888,298.64464915376334 -872.5612429378534,-871.9873067827582,649.4864746940152 --415.2337791756138,-112.16109098724439,-956.1733424499821 --397.9078443313739,5.2624852602609735,-887.647845305122 --17.808541233669757,854.2212577168546,-789.2135637843895 -528.8814561510087,-180.65789324801472,310.3474290486761 --479.52680402954127,-681.0154749172834,-679.0747714575471 --859.0161087137108,-628.706590197514,328.43876997793654 -763.381223687016,628.2513711823237,370.26861974896815 --779.1362731777947,-421.62510740810035,-380.3862493550621 --500.0861072047575,30.01131941944618,71.10762975934517 --286.2280496577796,-292.4216825271279,657.1111958121628 -578.5856966393712,-384.4083366385087,827.5768877465187 -905.630034005012,-346.5149159399183,-291.1501024138903 -11.268306843917685,882.2416250673471,752.638866284623 --794.8640748328204,-214.5385134571676,106.74237949954363 -6.264945103080095,-612.2738641262147,717.6335423363093 -353.8815659936747,675.8167497036072,717.5285586989444 -496.7117073314796,-121.57879750056532,221.09351003084907 --679.2691877605137,347.29083494981546,-641.4934885214385 -387.89918102031356,-540.8036784920627,-764.8973996995601 --669.4310197140851,-996.0157295618594,437.4792357070605 -464.8020981167583,29.866699826518925,-677.2743978892327 --832.8913249786206,-961.7420671254259,-668.5036460695586 -781.7110699662935,-516.9263165966365,-291.45734556556863 --789.3090310373336,-555.2773905036595,38.449141560410226 -215.50536619130503,-509.29537166757785,-884.5356815497656 --217.93426174520266,-531.5932581473317,-560.8921535403961 -919.7256054269105,232.6009718514481,113.7568863441918 --168.4497929533561,-142.11133313971152,81.8100076761616 -392.8596140722145,404.29219236365884,-656.6121845891009 -0.2255041532539508,-176.08380993179605,741.0539325387683 -262.8378424367527,65.00813283196362,-769.2107156421653 -211.2757786468228,-765.5921886395331,-325.58684886849585 --714.3160703713363,384.1472940487379,-587.4957723276948 --216.28125362394803,791.3495552375573,-591.3672332020594 -15.610127917558202,-161.456677667956,-963.7519179085406 -585.5162271456256,-861.9081873708005,-51.48995804609285 -121.35658987789998,256.8529132291742,377.26325861575106 --493.45523295456985,-980.0424466831013,446.88732470982404 -71.3131986951571,672.2354064144974,642.7767258013885 -686.6523355757663,-29.810680040919692,-332.7432083262687 -583.11640518274,-97.4117739414902,-633.1156071931309 -709.9480391229488,765.1197535446945,-67.38048771965975 --848.600545380425,-224.34782016613758,607.0753189252068 -803.5480570924574,-593.0545150048083,-866.052775949457 -754.7009062656773,-221.1901220422494,83.52192853512656 -936.1316241015179,-866.8705441715542,296.63601490419114 --851.7891548502658,-249.06214306699928,607.6290903868935 --133.05553448873115,994.3647078059007,118.11856989320427 --357.67569472809305,-559.7773481904937,-298.95893142767636 --254.93345248089838,-862.572644552078,-260.8516011464536 --71.5229605215502,445.4755044776093,313.4589694432159 -417.53131045830855,-983.2726362462859,-564.6652008389278 -323.3685767997131,-32.02126364050571,-989.373048663308 -608.9892848636446,545.6191465806749,96.83832598712524 --867.0733484474558,533.0300990651692,167.42717546272797 -563.9199543159184,503.49398479168076,606.0041439156741 -36.01613280924971,-719.35096361297,342.31494675937734 -240.9475701039412,484.50637439817433,-660.2379878985294 --610.0496001994215,780.8190344386569,499.95559690414166 -816.4569774006459,517.4306423278415,194.31061198060365 -308.2654740557473,778.2558478800199,157.61350902388108 -264.7826486567749,-687.0465679927988,-52.15755976779462 -432.794223916198,-458.1146033672692,-595.4916389509301 --372.34638355116886,-516.9987440143332,-570.1747259272083 --150.29831426382611,815.6770277670682,14.1192934774366 --624.159238369354,-846.0566612382519,392.3122902758505 --234.40247112722432,643.6618931707185,319.0215372815403 -592.482901082737,-456.10792116310245,384.7178449221162 --471.87603061256243,878.1369589005833,272.74856306674883 --350.9763996493158,-460.97627541545467,-618.146829856713 -389.28191778745554,-562.5687740041453,190.60653185497813 --470.7299461492853,323.9378895877371,629.8794570810785 -556.0504862893063,521.7026618615635,-624.5551886154958 --823.2301060309626,397.8976569747713,-263.30557241129736 --135.30754719330537,-937.7018144132179,-480.84710144990163 --932.6471922510719,758.3715452024953,-513.206633562939 -114.67433914601611,-922.0413586777391,333.6947826113162 --353.9453084918123,795.8383739153317,776.2363778680717 --349.4187632765045,801.9217913809357,992.3153469975575 -650.8313282478962,689.7426955104579,-501.9825277818202 -153.4047977155126,-865.4881720652643,-810.1641263566605 -997.7852240665811,-346.72150114817816,496.36782409769285 -613.330106053633,716.0465420144583,995.256594804313 --517.0070294862643,-919.2983462806005,-177.61696401082804 --739.8386603421061,-955.1482216758898,-279.14634571702777 -567.4765021504729,132.36138245014172,-374.44402157929187 -308.6840109854395,-535.9636393823786,-971.23710785583 -528.7067728728548,247.48616972801824,524.6052490019199 --922.1239666246688,674.2392556613045,239.0524000726066 -126.7907014252803,249.2280962290631,728.8664937367282 -173.87301311781403,161.90075977635865,981.3583141315316 -513.460334137136,-115.41238909772949,414.79400006585547 --221.53905661642307,-542.249075033002,193.70375377551886 -856.364196227903,858.2790400309254,-316.1894437890194 -55.35493244339,-576.7282028602776,991.2622189977669 -962.2358157358715,299.0178594148947,608.8281193549467 -430.2003225674,186.31643807893647,-893.3040060222046 --90.4713148946779,349.5726043348211,355.0632277673694 --253.7547631552328,883.3839733160612,-665.2859355264379 -0.7188924311212759,381.7679531016456,394.2716117836185 -297.2779135376311,-449.4235730962797,-687.5868626267561 -271.88065365342163,198.60423227887554,-641.287979421518 -410.2782911411266,-89.6560165326872,335.52118320630575 -674.7341595403013,-660.5431428461536,-961.7102640063266 -558.2051727915737,219.39485030523178,399.2791392442434 -676.3099499772852,605.6218696490009,921.8402938576494 -71.87015770423636,-23.008734680189264,-196.22560021853985 --692.617914311591,145.21446576404492,-445.9749513480424 -842.6150244259509,166.38160855419505,185.68036101622033 --290.15067824598,-896.021296044585,-936.5124692540228 --153.32971169360496,-830.8692438055243,213.6939110802782 -761.9460112793149,765.8296330374444,318.0908202644648 --577.5363370541379,725.9936627177442,772.1868706264163 --606.6928300940826,474.85217154135444,-426.96090214575406 -605.2806247058593,994.4757998072052,-939.9479893412143 -794.7317315818639,245.26106719731615,946.7652383296422 --69.9809649471448,694.7758611427475,-875.2118628034456 --329.4418998434086,-865.9669244975801,950.686266958141 -633.9478145436735,705.0948424919409,875.9304628677885 --829.7930277604293,-228.80481497333324,-857.9302219119958 --578.4137968999428,-541.2684459246552,-61.785577904842626 --462.8756650927148,-798.0437863644778,-665.0178218117846 --705.4488728958181,946.1535958245966,518.5850138369472 -935.522930539124,-120.51902698418291,-443.26303667468676 -596.5863944183734,-347.4921639177064,-401.23325258930345 --534.9880155843376,-740.6420435515292,-487.0738779664681 --289.36050305222466,347.9884162914609,-874.8703155610968 --578.9861206693141,618.0472805833529,-706.1561528324585 --314.7097069549569,729.3178437162801,-690.1493777131147 --834.5263287636202,-30.92400983997834,-395.1609774429272 -126.81672896770829,607.6097809669502,-725.7030236945136 -161.39816910857007,11.017520779727874,-711.8424279736009 -247.99697105796486,-452.7191642784567,-24.33136291197502 --835.4553514458762,-80.83188557275389,-387.0730639143594 -644.7624223707087,-886.0425460052635,-162.7854501633401 --83.13715173712399,450.01215259823744,148.57515018042204 -334.42467438836206,554.0985713035122,724.4059473163775 --372.24900655505894,76.0454107278058,680.2161568783997 -978.9022619301129,779.0386220875262,-257.06547475124637 --609.6669655626991,-21.214925186822597,483.28290367208456 --14.861858493404839,-33.63827337266298,676.4608421636012 --277.1924418656273,719.5893496232911,-186.39039809655287 --343.53378864332115,-92.02017760060198,524.893917349737 --747.9959442720115,-607.1615682559652,902.8896513261839 --649.0167452372852,135.45463586210917,158.6289333238758 --20.751075899510397,289.4904971536371,-540.3465484047631 -105.32453555349639,-255.6534895062057,323.3345192583781 --717.552913253701,141.75483367895254,-629.4592892333526 --442.7138737699272,-562.5803993528335,-634.3244402623658 -651.421903121334,-428.58486467821933,854.2475637288987 -939.8530506903817,142.5209398741947,-713.9977546685473 --250.90351324083747,595.464526696428,-265.21854260585906 --825.9655633944225,113.56982185637594,690.2417029920696 -591.8527742870049,-649.7537197392935,345.5292288249334 --558.9914731287058,-563.5849308956556,748.1435466103703 --500.66209451953966,-473.50530696397766,-998.6932184774009 -741.3380682510353,585.1896264182694,254.65787018135597 -500.53152787768454,-695.9028651510164,-83.35281082484914 --297.5612253024382,-812.446947485967,-27.739029570151843 -841.4793006852708,-919.8817618986111,-417.0781730124122 --584.918127588593,-523.7066926686074,816.8691037587505 --63.8618915314197,-67.40117412036238,521.1512849105645 --691.0155919901483,-25.46929179989843,-140.0295717578806 -193.8213810933123,999.1154065008773,538.8977881640942 --204.26859396514567,655.106104548094,-658.5832733750397 --939.0726273820798,-591.1032550714539,-319.17688777148066 -21.16151491911978,230.25828108239966,821.2114344288434 -19.708019100915408,2.5512892514587975,-899.5139803540358 --930.1768946875524,102.31992383274405,-123.64277350331099 -678.3607899605972,-678.6408305763097,-950.0566757659008 --101.92246413974829,-525.042886495485,-900.7712533223252 -449.19657369525794,-776.8140000855051,216.6390000155434 --437.90049966622166,-653.007899289956,-240.49695416136512 -602.8915524459073,-215.81284619085466,501.5392984221114 --749.0274064016986,545.5428393301581,-526.1333501867027 -354.7862597777455,131.56310968199273,858.2894344233746 --225.35496404937192,-867.6696223311192,-961.6890288974942 -653.7171219455063,49.47127532286436,550.4881036698985 --531.1487999769706,-309.8325089735325,-939.7922555773621 -922.9846491482242,335.73581340162673,866.4101755186125 --469.0071851418553,222.92722245132177,356.9999365852757 --364.90059948482315,696.21847003126,894.3229258004956 -769.7102353920086,478.13395187874517,-445.070640550092 --436.76791578873656,926.7206408920758,-979.431008128616 -432.0999464842889,412.49232511052446,245.3790818995949 -980.2176921737316,-376.2411284725496,-320.0562724135036 --842.1211941068889,-114.40372691252514,-477.9029475303038 --313.22659564471155,669.1435805112553,870.9690270549916 --628.5338559896288,-254.9821368930683,857.2611242307883 --876.3830786215548,-815.278943777243,-674.4180215875413 -190.42566825374956,-699.0554579880051,936.152762901467 --106.57094548295936,3.035920700332781,-506.682768389187 --58.07949513053302,323.82726527402315,502.3542739080856 -507.73616541982597,155.78222538817658,808.7195499877143 -634.8156946122187,514.0962293972509,-888.7889566390787 --986.2440755607014,-575.1054456090541,327.0471878269045 --177.60502223490835,-195.18748140137654,769.1737764592274 -791.1256962636774,818.3505281071714,-372.24384696994537 -382.1116254785236,-456.73363745126073,-618.7803338511004 --630.7350853052616,-315.7847582728119,-140.0847604403566 -661.8983421101368,-760.2178130545758,469.8516947897883 -62.909828378610655,-424.109314648015,-14.360830934350815 --400.1158604459547,192.16391047661205,-132.31215428951157 --671.1889418422425,-766.8338508886065,93.39136414426025 -804.8260665722069,-312.08462688462885,466.00021444524646 -317.32270987953393,863.109828618962,641.9620345982817 -133.21051781092592,314.0609964682146,796.7729331680698 --200.96243082613046,-346.4105882844452,-978.3778327296073 -653.1021483829284,601.9614008067297,-791.0909637996972 -153.7147622654004,-72.03660366622523,-762.581808981777 -961.1364541214471,-570.6082250732891,-865.5316398188777 -189.69475900381917,477.73335426606536,-935.1131079056261 -317.43527745404435,64.58375190290894,-793.4699822499032 --654.9522461072759,135.94859463216108,-407.2847729734233 -876.631457302632,637.4804589681016,967.134413027326 --480.658322099172,939.4472655959541,-137.53226041688424 --304.9624093724907,-899.3009460612935,-894.4694842807947 -384.02251189330946,-84.14201113194417,-546.9567479277886 -227.94061265046525,-494.28376349977765,155.26350868884515 --281.5825060346193,647.1044532236381,641.3923215335585 --45.29920375519737,-298.36178132996884,-274.8804068818109 -611.4290513364358,-343.64103440477595,-581.8812525863079 --830.6233162493863,-66.61375823118317,-35.73580216031621 -681.8174208058142,-557.5226071078721,-238.01745266320017 -616.8114777873818,647.2472214979471,-230.77784804246357 --81.75195342663824,-393.4282183014342,865.1097568386242 --762.7124685168394,867.4988460029401,367.7329036706865 -63.14430537346243,-934.6818784310083,-48.80761635598344 --184.5037899945354,-677.5623760497549,312.81920700131377 -942.3018147365715,124.37762212905022,429.50655288789153 --863.0990948679664,-164.6660083660105,-767.2830296710083 -225.59167107302073,876.9643164283091,323.555464943277 --846.393903371157,-290.6675900298343,101.32675888170297 --193.58448773349562,667.2880209503446,629.3420094199785 -223.66204020644295,-253.08410973458945,-489.32725247351175 --788.2513635737414,-290.2046330268919,-173.65496558456095 -351.6458502081473,316.3196485951469,-859.7837207174861 --209.4813691376844,-636.4422655652761,-686.3745893663886 -654.6042994744919,-916.1695665674849,-161.63424819575732 --663.5926884669636,758.660431356948,114.08102655007019 --537.2387272463039,4.854574332752804,462.9727194062316 -916.2360178388676,-559.107991509162,772.3635442586904 -868.6082283349806,832.8410890641323,270.82871372381965 -259.6413088694153,-193.57873363235444,504.79576460757585 -62.58803670186376,354.8761424565889,-143.08419230240906 -462.9929280862782,648.9430352090981,-707.1274867943678 -665.859431148456,80.5930635806144,689.3318181804486 --137.39658731797078,-241.9190292339299,830.1214650344448 --497.6614649031974,688.4246505722863,-31.958854981191735 -28.19088510251936,-383.063437021032,146.08440123803143 --349.5776074475774,-921.4611715166953,-456.00278931128787 --987.2419131868187,956.7095741137132,931.4944196394949 --209.6894050553899,456.74170867929206,-308.38780317915007 -342.18631417195206,610.8600860919582,893.5124893844816 --199.57544830065603,566.5959659120954,-468.14309873576246 -980.6646075872966,-948.4608024712977,207.05761300224185 -319.0119633026543,376.0911141482577,-759.224842421822 -877.0595669462609,-637.6334418998345,245.50680647968215 --554.6478417538301,-385.5671659574582,92.91708345624875 --165.61316287084708,-679.5487980469875,-658.1271951583035 --163.71042367440066,514.5659565510014,795.9292936955771 --831.7446754812343,-213.79218488119784,-799.5088725542468 --966.8150387348043,323.4373652879133,204.8988839331755 --673.9617723702277,-532.3743338138718,-952.5844927109632 -669.8944113888074,949.3811920971029,-729.0809264106184 --537.0495724694038,736.8190478938682,852.9275959123697 --160.74523438637937,-898.7550554618517,-921.2163326143611 -147.8997321380209,-214.20978221364192,-942.695144844691 -166.50478462511364,-977.3949268219551,574.7439162985459 --387.13435459325683,-919.4839939815358,176.7044419663066 --204.63117113389058,947.600826714299,88.39732500740433 --449.52163792598344,418.87772926794946,-457.0159949145774 -808.4865828151303,-250.5560589852471,99.73712555241036 --898.8537923515423,-147.75752409553843,664.72707932199 -611.2976107266838,-551.3628822929475,-547.8418579788747 -634.6106244264736,860.796840338651,-809.2781574539929 --99.88272114754943,-325.091442071542,741.3769109148786 --832.9501706399625,-577.7481148839252,504.93667517298877 --897.4123020375688,-14.929238571421479,-115.78593064055997 --331.1976420225027,-210.8553693621525,59.88117386046588 --677.2652832232338,143.99175656718558,610.8646585999727 -520.321859580318,-692.2001906124526,-701.5010605170521 --463.6512645101734,-277.8505473179256,-183.0888371830348 -359.3944336666905,-886.6391356683292,-930.6545915478672 --216.17887411218192,394.32738427596087,-613.1293140870348 -283.00896251250333,-480.34372411940103,772.1722176270328 -791.379888533233,-405.42559143734707,-540.012492073519 --177.39205586753747,-518.9368296397026,344.76768658340734 -652.129369096571,346.1842618224341,648.700894498699 --206.01567558505178,-687.3660585822784,475.90189479518426 --279.0509897168922,342.54165045826494,-458.7121160364686 --837.5407303866547,985.1635909755269,-687.5969841388014 -976.841987926962,954.5598651328946,587.6362078160794 -318.84592416399505,155.61410050216932,732.2030907556693 --421.1209567610241,-64.6375750302459,238.77993873300375 --177.61904826101784,-145.0270918194641,-339.4306649958312 -128.4636333690721,701.149056030232,-596.9432439873743 -868.8660775068829,378.17530749645925,646.5464253600603 -112.38138526002331,559.033402848127,-967.5992053210656 -636.7608495590705,-919.722281829267,779.8267527257251 -983.9254944772865,-411.8650756464443,-579.3628874284127 -530.7267277160813,-493.94731815949353,731.1247663444069 --794.3148156850466,-748.0896072412835,958.3031102012312 -347.67779654000924,693.7744488579056,-351.34124529696396 -352.96749904120884,188.48365461719436,206.30024024589397 -365.0649190754432,150.71834625819724,-141.8752613946681 --448.15461123890634,537.162661826404,-547.4551399936277 -384.7086123088284,-533.3343547013467,250.66033990890787 -494.15653425805795,-562.5722221869216,-880.1133982773835 --738.0525140116519,211.99393454205097,698.892812451471 --910.0063575291513,468.3025180832924,-317.3627080998957 --42.94326016095499,857.7190996911313,-336.05699052830903 --69.32613212102785,-972.6351704786377,-836.8025599903233 --482.8168177304319,-944.2955183578512,262.7506520965019 --147.20328639675495,96.29040545604403,-650.7056282073409 --408.13594112676776,327.64894970545015,930.6054472607996 --899.1664527955816,780.7686417105322,153.76240262241686 -127.83913351124738,0.557070415520684,-861.2118281916332 --820.2462965276786,201.8240113181721,-318.08285712888335 -834.5361331553613,-186.8189252810555,-713.4370825947178 -429.43766700407195,-413.2931571179803,50.94061471178634 -395.66557101034005,800.5282224041407,584.3823896033523 -352.7221357454482,359.26636479028707,891.8492880641732 --408.35180500692786,-997.7758116076252,-456.09088120360263 --564.2172407465121,323.66917022799635,267.4231995310581 -186.92276540944772,-967.5131135810926,457.5561089012949 --352.93917502901695,330.11197801326216,113.15685700430663 --314.5381491441857,-730.8474657917845,-811.162204679038 -663.0366662244471,836.7950841631159,299.57609352859913 --793.1317702790333,-195.94556622351854,457.87840021031434 -559.6417680201362,-763.5627554178228,-999.9385623092352 -424.27409176121,-286.8076480275887,-491.0373367634795 --974.2050604209492,80.59881352299931,702.3014708519636 -915.2632925451758,131.48990122657847,28.922655479788318 --829.8872290215178,97.74560308519949,-240.0418420692107 -214.27056176715382,-222.5473042469066,-519.4017530992664 --810.069449543247,-370.1631108222085,-806.7103314244955 --646.2060983520321,974.6723171590918,-111.79288618676276 -63.74353301003316,747.2370574744307,991.1378009813757 -165.428898689363,624.9476420883434,-346.1179513266495 --388.5120851054178,-194.59255801087966,345.01452534729833 -364.3833785101974,-369.5211307010984,-733.5801517267425 -264.7925129310172,-743.348275622471,156.98501645866008 -386.84425611261804,401.2229927889032,506.9442213191935 -745.7188431313291,-0.08201607042315118,460.4983790591423 -238.34547073167346,-626.7201204046348,-948.6207102611836 --430.91722864613246,-113.93258732476124,234.2118888573125 -699.9186610064107,-607.5085665876687,-748.9004202030458 -926.9598949486551,-783.9108812471858,-43.01785978562168 -171.12745758660367,82.74884181487641,-827.9356859341136 --885.9461719927613,-789.0331450779287,171.175367745225 -88.68977526864228,-532.5184159265116,275.5482836911831 -640.1350041112987,-916.8420803068125,-3.740112903915133 -378.6208242053806,-495.37614586062585,-384.4581894137018 -227.27580597876772,795.8705868874738,619.8488406057986 -166.26043819916708,460.44343551449833,-270.3550595844026 -281.93105619751555,-67.636817744886,-620.1277270848782 -403.4765477545143,112.92927469764413,-282.75683609281725 -822.6783801572615,-958.1317643465335,-368.45369750100804 --886.2372044447069,533.0546324432544,404.2149082275853 --337.295562527366,351.325804414146,-208.1255476081003 -512.5075828448687,-91.63267452658783,-175.44054433666884 -869.459830976602,-498.24180021859956,-759.1053200068691 -169.08622651891642,938.6436245683578,-244.32157254562674 --875.926472742437,-321.3894653808651,11.863308639116894 --676.1539867355725,316.204436112984,995.4987780204012 --96.52104803711234,-290.54288653957474,-198.59166633106668 --769.7076432095978,766.5472028524475,-170.34868895729608 --225.45117715031733,319.3805458609486,-115.93315813775291 -296.46693761569213,-877.107419738425,627.4466874444549 -881.0079057588052,297.5307723187718,909.1318577176214 --697.1353712600734,-45.16762103929261,203.61346789089453 -163.47329484237343,-197.07644182191348,-323.8311812674772 --746.3519548991624,-216.51509887544364,-674.6783697890297 -468.73135298443685,-582.33812901082,-882.8693894309323 -104.73227563446858,190.45946543880314,743.8261225610111 -153.9632248353637,-309.0382925531086,606.023763052641 -80.55778637484218,-841.4394307376165,131.70112062649332 -816.0370908433247,-207.37474900355892,-407.34839620039986 --713.0610859639598,-697.1089561292854,-134.4570313163622 -191.359648323059,-838.7691896607964,879.1371780503314 -510.2672348903918,173.2478365673253,656.8773418779817 --839.6264863757734,-46.322244533751245,260.1862537233269 -657.3058122365785,566.9391200985353,-445.8615005732007 -881.7603391184086,-751.3083171382593,750.2672372423042 -941.8804992092371,-645.6929535547489,444.13212840757046 --919.4289624440031,-189.1543497216901,32.56659839534814 -161.29045181926813,871.874496497119,344.50137458838935 --37.44409756152595,619.3500725317786,901.065641908818 --955.8677026354183,965.0425445120775,-827.7357218726393 -628.7735585375226,-439.3304948971751,-735.6406844922565 --120.28872057233025,287.91315889522707,-238.09630995304997 --890.8691834346021,198.92227931743332,804.8065522213494 --233.56926810549658,-567.334444738346,-114.84530813436925 --903.2745779024383,640.9751689605496,652.6816219003736 -176.00092685925688,-293.79422212322106,599.5667288915668 -109.37404957673425,651.8646171000323,262.91758516604114 -568.8109464255947,197.12598643551996,-171.71786356866755 -915.8917198522752,82.2276497576895,210.17903708107679 --559.0247211705015,251.30157885455287,143.21529896588777 --630.32320410595,-880.8258052937126,208.71863942954224 -527.3845387006411,46.80274184401651,-546.4547493607085 -333.0439533860699,-839.7885467807955,-116.33259039609084 --673.2664832031596,-631.0818978802333,-595.4121016835927 --226.5858859120442,-897.6995887592047,-204.41311814180358 -23.41489422940174,-33.411430067349556,-234.4317991939189 -678.2932161415049,-709.3466151589918,11.393487562747964 --875.9171660868914,-857.6886422441805,147.73169935419264 -132.03684977564194,756.0670256889139,115.74735132014644 -919.5820408097004,-902.6103032001405,-803.9846304385178 --911.8682768592372,-629.44629933292,82.54022188335625 -291.1443628548559,-908.8296841026624,891.9417796911987 -684.3307533007621,-406.7750356858137,-845.6249395470641 --660.2258535618855,-746.1111724900546,-753.4324414021063 -37.123377331467964,-508.30511501319944,-283.7205669417111 -979.0106667686448,368.6284978506894,897.9613340940027 --714.8868899337688,-235.7210503348615,109.46360656470847 --846.483876222524,-991.6251127440843,340.86866759383497 -283.63903360287077,-178.42238000077646,-20.71184793593477 --169.11399881582076,-951.9899103102223,-329.2567875650751 --645.8354892054203,-803.1516217972626,913.4408677786996 -198.71945008433113,457.3125684732054,-369.27251346776507 --213.70574101196962,-526.1520122065531,-806.0686580691505 --641.9367251168323,595.0280905929717,355.09161036755177 -93.85775197095381,-49.82025426646385,844.8685673122488 --854.5301044426632,-438.798373524168,-300.12429285857195 -564.8516244255757,985.0292403239428,-518.6589704856939 -748.6146682741612,661.2455208635827,-550.6852047164668 --201.3348396015549,-180.65426141496175,956.4413370531165 --638.2161972422034,598.3159422095641,-331.6145716537802 -461.74069155232087,-159.97799140867426,156.71952623308016 -665.2235466522623,608.3311299677682,732.8463670794004 --880.7653493106819,384.1011060794897,-720.0252465564743 --168.36286396317803,97.17683010937685,-194.52103050633855 -39.22335160601506,993.0526175972384,-729.5653725742906 -350.91209067285104,-207.99806722876951,-733.9804021853424 --682.5264732513809,898.5462124912337,759.202993423524 -814.0839208300436,983.0655516547731,-583.3692199829641 --289.12132527187646,338.43805984973346,-32.39492027870551 --163.22093324333298,-284.3775013288139,187.5612638869045 -151.18685728016408,-677.0843318715199,-56.52032496312188 -106.9435524196997,140.57387746278096,-579.7856141752964 -484.54278450457355,-949.6018103578607,-290.3362889136747 -560.4252970712671,127.78584211080465,-477.6751349782795 -389.9062386860953,134.78188831214675,592.4872189127743 -470.05037237964666,220.21584407246928,-23.644649378371923 --733.6357486649531,-477.3339642292325,-161.80105416582944 -198.59857401277736,27.41571043060958,-423.63094808094104 --987.0712844205789,-7.521556198372082,-428.7480228755138 -469.2166014210702,-952.107469459033,169.65562261158175 -882.9484750121308,-651.181465777001,-56.701018498809276 --817.1560163657236,251.36382452270527,101.06336119245111 --185.26895157433535,42.7540429474825,793.1493169380203 --607.4113953778659,-954.8709765893055,723.329769398202 -154.23416477581304,781.3169109236849,193.89044682634517 -620.322179919405,-140.6532732897041,499.7198625765375 -826.082933779712,144.24592744441247,-638.429698875241 --462.4047699396036,-602.7108462051884,-506.28594480853417 --387.1691012979272,110.26757350637695,175.98325892766547 --147.0005055162777,230.84155964167076,-836.8501487772681 --824.4235258836801,-656.3410792846831,36.15499608068944 --572.0106426033728,-433.43119301484535,-199.37432765401184 -623.7322480207597,-972.2757281742797,298.7576404732449 -337.7530620813707,597.3115607132731,865.5058781206264 --959.7243021014203,-692.4325889735676,772.3425881119861 --82.96287562596922,129.18127786692708,326.0544074462948 -358.13320899127484,863.4808066330163,993.8988348233393 -440.3149218618805,-425.5575815896983,759.5048045886872 --901.5581709184768,-537.8382942510076,794.7714349274297 --487.61697112129013,-558.6978807565031,-723.7494137195056 -718.2235152938331,0.11651838217346722,349.7864061083096 --521.8672318499407,516.080842022433,520.011089924197 --374.8039501833997,-178.63473397943426,-580.6194451395983 -953.1220466458085,291.2051541168232,869.0877614310311 --393.22891274173367,563.7818259937794,531.7172877694841 -383.31130373308315,931.2779505336009,-212.88932778736887 --738.5653528204855,343.41771848812164,458.61960095441236 -150.1211469176294,-586.3642137332074,8.911883338710709 --375.62052686174115,-145.0669436666219,290.4371516893277 -490.4294853816691,-535.5506181973137,-189.3492787060933 --461.6768580167417,-602.7367722762617,566.7744399916767 -818.5053888739849,-259.53562863084653,502.5578487475336 -793.9905787288221,692.2484210604632,-634.3732229215482 -912.5837630267226,-246.6471191410751,-321.51867765232737 --875.1373454444393,-27.65269179023403,-781.9727687181426 --502.92035814514804,-366.11475646543727,617.6526469833682 -750.9773007917931,-395.0673650770607,717.3962424891479 -714.4618747395821,529.3019007697471,-706.609771969637 -380.64569380145804,890.0481291611375,365.08095753431417 --336.7663017843321,1.1586348616625628,291.4500867021072 -21.140817457007188,-760.0941165380603,-375.8719106959587 -604.792061107265,722.8360921910348,-725.3999345688595 -904.7735047974493,-342.3547643027813,324.62747746143987 -503.65029191336225,623.8924692757669,891.4994044518603 --374.1609039423548,717.012909103109,-736.6261931275859 -410.08181270718546,483.95545902797176,355.44648240264087 --495.370527729694,746.0862940304066,-662.2830732592099 --892.7304169583383,434.92998122382437,-49.04856953453259 -698.1960399173522,-233.20571788348207,-663.4428229845744 -672.8843849397394,97.81926328014333,-621.6084152192902 -440.76799717289146,22.22727697900109,208.6259644806396 --78.20332358683629,657.4179676360127,659.1254313660997 -418.7776436487725,-789.1972452070754,677.7077238081376 -342.02596106581973,394.0483320085991,-274.0343191922567 -758.5591123140134,450.743200469715,-774.819066941611 --184.4439311876747,772.7607239202835,-905.606596605242 -922.8332392840989,358.3251366391255,262.7519552867532 --458.88148702401725,-502.41642252164587,884.1164389771909 --403.45509153175453,551.0105934379988,-213.75640358584167 --721.4918584305921,-978.5694046092821,88.51467403050151 -951.5576370978654,-261.72761238159103,-285.61533201391035 --311.81676430111577,41.08767460971694,-118.67023315141284 -759.829253454029,11.041583446980553,15.515676377137538 --723.2568105588869,965.4790818207719,-500.05421826234067 --853.2718650807947,326.29249795041756,190.73274031374535 --169.70869201450853,-155.61553223864394,570.1278420928625 --608.5747198007018,640.5066378897795,297.49422779003635 --162.06045244095128,-83.9427668322628,-486.70558562780843 -504.22866539394954,25.749484610535546,-358.29091450031285 -192.10023152190047,991.4689041026461,-129.47544068689228 -841.3828015572392,-309.9663201508678,-890.5345861500282 --591.5157872631423,-162.6097133446316,-560.7301428108619 --999.5459235634889,830.0030754950544,687.758822461858 -484.58446297389423,-664.3708087079427,-759.2728475800279 --864.7905010552337,448.0583775458424,857.6159213757705 --138.92835817392597,-761.7186560079036,24.785641464213086 --302.3361850827397,-250.35015130000465,242.6612483114145 -437.4362265244047,-778.7928022536782,-928.8195383870473 -988.6606053714297,-534.5433021688964,-892.3389501830818 --620.2493418081601,-922.0843073030716,-216.37821076565672 -604.8035689026485,-317.5111004845588,-111.63318624326689 -351.1735471348775,17.788140139760344,722.8913720426485 -732.0713500915131,-980.1786090176927,556.0926129663983 --78.53279951665229,977.6810826073261,-33.535848249129685 -973.791890776595,509.1387224114733,-502.79023077338735 -76.78995857391533,984.2712789571656,715.0612155038473 --805.2662124175578,412.7439936199921,-308.8408282583739 --986.0354762393038,-193.03806194600077,-530.4911565500574 -637.7385410409431,-325.33878230846904,655.0473879076342 --998.8041223304094,-384.36169994776174,-517.6695713844761 --532.865277862778,-863.6267604690746,-625.7514591789966 -111.09913977123983,-417.27785432451105,-165.21043534170406 --246.266239305623,751.8098499997891,810.5979980210309 --14.086056688279882,-339.6880993687912,-786.3985919952727 -906.8057587641899,-879.5461101994051,-404.6994448634391 --403.8675976599917,-359.1974277195702,-671.4263134551815 -566.3228618473943,-755.0042760680216,269.8133183063255 --752.3079465883651,-858.9287248140869,818.859007371753 --619.7424673625886,642.5003091194085,89.26174221427164 --844.2869607824608,910.896382876135,-506.07766601621495 -719.2906907052129,-662.3799884308717,707.8857642837058 --973.542374189412,23.560913138961382,538.8851588431137 -869.5910349855667,818.404272412974,639.2497390952899 -776.3826993226082,-601.560628325847,-431.6314085765425 --422.06295015788294,-245.8921379966024,-213.35865922962262 -89.11064930935095,-680.2404732671173,382.4933275719786 --664.866921390987,-379.38303579090496,6.690261212308087 -592.8811230469546,478.93846647745454,291.0687128210445 --688.4534788396597,94.09069123115546,-825.1069964002291 --245.2736464066985,-172.96693942008164,-920.3771211084924 --452.02380106005637,911.2989345329788,907.265215659379 --295.3458914949214,-913.7997821033518,-641.8101213436369 --215.56441313291975,895.5593959384596,-717.6018729256302 -527.0316873364245,-782.6349212506159,962.5151547825537 --236.76700178173007,550.469077798112,-314.8178343777364 -255.3377543176175,-615.9678305199266,-707.9579614060749 -876.1282791362626,835.294555808867,774.9378804257647 -250.866900333187,616.5364224325565,-861.9261261772501 --330.42191621864174,-372.59375048568756,271.2906439052265 --288.08445305871896,-702.9864367126384,192.93415082708748 -628.767841338163,-235.75301108005362,-735.4625698030366 --606.6236053743539,-525.033389661232,-400.2048140109275 -285.59014101261823,201.89096907543808,392.1597231340784 --274.9960309369736,647.9953037599566,-591.8246776884795 --61.91850496369216,601.8774430828605,-639.6827045347616 --780.273772518434,767.3679353759794,-314.14067448160824 -367.74024981806406,-949.3027914721231,380.0937768188992 --367.79737690605896,-888.5182928251165,219.62552309623402 --518.3923678536535,-226.38551589624,-838.8383754269728 --705.6734978101093,-404.0455290083124,-820.4809988796858 -821.6525293726304,-987.9059136320432,-32.27956227137713 --753.5050837348971,-384.6418210441029,852.119119636531 --676.6108934520263,931.6646394366653,-588.4112460211566 -483.13221693365927,93.35452979462343,768.9574551935184 -107.98651100626194,69.1184383126174,-609.0839992632002 --667.5412758966826,832.9783022310285,-344.32360229993185 --255.8354900742081,519.6473168567768,-322.35303515438534 -904.1248932780054,475.85553799760055,194.85848514683994 -761.7903210895049,-900.7881833010345,-485.8746156215825 --69.92733155818007,-546.042921056958,487.8103746043039 -838.4160621074504,-152.45976013815323,-315.73479977621014 -923.1014642751325,-110.29513434491832,-21.90319910143353 --296.7002553161892,819.0969460242768,137.91096656370155 -524.3491743632894,623.6134367017728,-316.3019161654836 --132.61133735923988,696.9435488125293,-273.48929664837954 -587.8702669037025,881.9846451488743,246.42074613601403 -483.25457490377767,610.1946240822697,690.0792977932849 --209.89332428640807,-897.4730816480037,-196.24745752652098 -347.51245956817957,-99.29922843841439,497.926301720797 --286.0351410626722,269.488282208059,-627.1603902920508 -498.73887328991395,91.39193762605169,-591.8712229067988 --416.17765300438543,497.2174171636648,-34.79752867695868 --567.9371192138556,934.5423807405953,430.25003963377594 -914.2696650795922,-145.78990927931352,-49.79931861655905 -795.9104323700383,50.09868049076931,414.5578238113344 --495.65424500894005,-106.54706259471891,-753.1002683792898 --588.0399282460767,-998.1131694647378,-921.4698967026795 -954.5676463538587,-515.2926097264753,326.62141900800384 -678.1993975992232,101.32091847312859,-693.7109998320876 -456.23287467233285,200.50282019916608,462.50117869475025 -539.4932457141742,950.8207353694902,147.12656005342 --316.7177746187964,296.92911380047417,-863.1185815147478 -794.7946366431727,-761.2379773236064,-344.3143242283635 -631.4907612522418,194.6247566614236,-212.72895944511583 --53.12868124995714,709.0947864043605,-319.9912278802158 -739.2993696243427,-823.731138046617,553.5968744172615 -695.0952661094727,-636.3646943253225,-139.30693525559911 --669.0004506726888,413.20825798843543,70.69553612331356 -270.64669341664194,-607.0260660875776,-576.508275895161 --917.0053489801873,-355.8649296085406,119.48932266734982 -715.8698279946575,333.85489491736143,-129.2073532004971 -906.2402287882755,438.4904011516637,860.3304057251 -55.17594654433128,-482.19145041372076,-894.346627270556 -452.1697029677009,-757.3940039889318,-394.4497434560657 -64.94181576779488,128.83317555949543,201.16639397427207 --667.4893393005987,-240.52519035670252,234.38845423393332 -939.6377292675695,455.26227539937736,845.2075141879156 -524.4241166283541,183.43393778480095,-615.953261727311 -333.37130378502616,246.75913191981408,204.938340914533 --20.428264023518523,57.31320797855119,-331.11494576379187 -38.62538528460641,-604.8881886430436,610.3487947207536 --628.4460906025844,-830.0674202210671,-127.5079472856853 -316.61487901212377,-124.56635013291725,-446.49173609738284 -116.34236778088143,-305.9953291756001,865.7353802532662 -845.2902792071441,4.743639944190932,-344.23201196348293 -474.26482791327817,-926.5741130338668,-50.46198791269751 --327.3532114593329,841.0717702051093,-975.993945454635 -105.62975143669814,481.32716213325193,-29.96402495191751 --829.1939396745566,944.9227800558044,36.02086275219585 -228.3724886380228,-526.7804345849854,-33.00382978639243 --141.7010160833563,-850.2083159960325,-787.6792929050655 -674.945039237549,-520.3600955868195,-610.0834570027389 -9.822902500278474,537.4942627250259,-876.1069628420241 -153.61583927651168,-761.5791143188533,-927.077898348763 --894.5120956755652,668.3282164168827,-764.0550327438768 --909.6972711754161,-124.20022571417542,687.9869438840497 --475.18324702139614,-156.57476494816729,-920.1549348724975 --101.84297173024822,155.22616127426727,141.8141075042895 --335.1466156512697,-368.933638673729,-786.7527621268042 --266.4033587074632,-801.0106622540707,533.1918894241032 -932.5485954963717,940.1489133334137,730.1421987507877 -201.58429867923815,401.73139448775987,-429.58839463917184 -261.54084034524135,-88.70090112024513,-35.965320446135024 -515.5531207503159,-436.1632888054967,-363.9207766109603 -849.2835822572733,-887.5514102980555,-28.731403173319222 -825.6016008157235,220.72601563631406,92.8141484242642 --500.5116415412896,-313.44902187110347,704.0968316093858 -118.43626353691639,29.484387513559795,-800.8405729199421 --967.9436870897538,927.3703773740983,-246.02766542631673 -206.42612419900865,-840.56985362543,366.22857144609316 -865.1334174119218,151.3305059948393,-747.7693552491788 -163.44305494695345,532.6944262093048,-187.16692685196267 -759.6754958829356,297.3659067147289,798.497836578405 -247.0106224946744,-737.4240559903515,-380.6165777896217 --596.4101034950861,817.6529954337245,520.8001345749653 -352.79673782001214,-398.06736073675665,-631.910455899573 -512.9021759778236,-51.684108241840704,-548.4208956987418 -233.2439563305502,-919.3322957230961,-347.65949174349294 --62.88601081773072,-704.0833317811882,969.308955181679 --581.8052708207715,-739.2937399134689,-592.9302522262071 -538.1222663194485,-148.98868145631434,130.83187950507613 --957.9816860272786,-931.1373828533709,-108.34890034596765 -633.3104864032471,770.4777574151306,-826.5868648087196 -76.72620420204566,826.459372558541,-224.05449120422725 -659.1316628567372,-732.6086912011276,870.7889793355973 -502.8466350626054,882.6687855738035,353.234467105013 --273.19213600114597,876.3623450494449,-448.86644738164307 --335.6549558765349,401.61683600348056,530.6325990507726 -858.8069676983077,-590.395181887581,595.996070438448 -477.09210679392686,-872.4108874928042,-225.55371757958608 --434.46908587980283,-391.01915129193924,965.8937591094016 -285.55482695985575,435.3523155869991,953.2352746300182 --245.59643508472266,603.6803369056117,-130.9380733910093 -739.0673436299596,-638.6849173773936,895.3723541285592 --562.4565831782406,-347.55898603813694,512.3844682135609 --212.48971686918662,216.42275353289324,-110.85299786114297 -484.7398741795637,-543.3374952627782,-883.084025526246 --400.14120505386757,-51.38267026313952,-663.9598956146428 --290.40542068722266,-200.03396341286293,-885.216312623453 -166.61449636840916,768.686855942575,-696.5141740938952 -195.61602680302803,329.4784098216926,-161.33063916142328 -402.19517472854,-178.53691301797596,9.27457595486976 --985.2939108911461,383.4402282693777,322.6853578894488 --923.1982453473108,-263.4997852097338,958.0636815833348 --158.52687486276636,3.89081026368342,819.8603163194371 -434.5237517315129,164.14026224844724,595.609362682145 -728.7325329119465,-86.22385652546632,-49.78327013632918 --227.8981286963284,933.4122800369212,394.33250858070073 --833.5538675838554,725.919246626037,-38.88011832746383 --862.492187155025,99.4345103266221,-165.67144204859585 -755.4988097252497,-592.0107927812253,652.9292189843659 -115.37738237090548,-890.779393573062,943.6906026509694 -25.23048820639974,-418.246291536835,-61.18631602148389 -715.715567034978,-390.193751229873,-614.6472070265993 --741.8575061382371,-404.2812032195775,560.0961740800869 --56.747269609476575,-545.0367926129201,-667.6300007805016 --334.54104697924186,879.8487457714177,-313.94657481995125 -976.2481519092707,-29.539088469287663,-641.6721634196982 -782.2801835870189,-79.28925373034622,419.34268700904886 -967.4231664183035,-899.649299360052,-806.6108804248657 -440.9134829255124,-436.34999340905597,-631.3972060998019 --921.276240360541,-956.3065760275964,548.9712062395818 --731.1331452608999,-64.55876805769822,211.79363035896608 --143.29639886230746,-945.7866953275338,567.0030051758176 --978.9735509166931,523.779788754968,786.6089875762455 --134.32015788565548,71.08494619559656,-46.0332147646925 --221.58276275312244,774.8490707407204,787.867021339981 --328.367270716931,230.13950802939598,853.8151242917281 -924.1169978827031,17.91808084409513,-94.35038943134646 --442.61136814294844,917.7437463808201,-714.3713910542654 -159.65915209545005,-434.8994649627223,-441.98341930440677 --190.0628252476231,997.5858716313091,-890.0673863203558 -157.08363640706284,-834.8556839294456,-690.9583400189621 --120.87411645420264,20.920262692882602,-482.41518327095196 --367.08573825116764,-826.0659594881339,-393.56043231149897 -933.1168787610882,889.4147633449634,-330.24341972602997 -141.70787255752316,819.1907822218886,-987.6323547182067 -621.3671406751837,896.739105577838,-817.3485313328858 --677.1046279341579,921.4926055427109,75.08028728069257 --971.6067310565526,-484.73600247294166,-100.11265146228072 -385.8178220495354,466.32075627359905,990.8430258509122 --424.977601232482,76.44020373695048,66.64709571921003 --188.70948110552501,-661.6762123151595,954.9131263676852 -706.6343733331721,-3.333943411525638,206.49084536805958 --545.4778928806754,87.5741407834937,389.94026624295157 -30.334056773177508,980.5703411698826,222.68331249545236 --258.05257481566196,544.3040552316763,-659.0749768367159 --230.9683725874669,-306.0820992448283,-136.38580978444543 -563.5596518574525,-31.65393567318506,588.0289005319255 -152.9778062797318,-315.8611306848893,619.9574873669449 --523.4206588938168,-551.234040400409,9.005848109671547 --478.3015080758222,-981.8259300975674,296.59505459760294 -22.18764294479604,-108.96437101367758,933.9370292366307 -142.39836792582742,726.863155578769,-721.0995275896796 -138.41292625885535,735.9592534618057,166.2115145597959 -436.02835625400303,-255.9128643755853,-815.1009659258668 --84.19940974585711,-211.04121832228498,734.1203647578945 --512.0093952950556,933.4684550702161,916.2762396089922 --504.7367138571226,-303.8960890453591,791.1114817477701 -933.244441792215,-113.12179432791197,-358.0059087182044 -52.188026503084075,375.53841273146963,-453.05096925004045 -472.94634923814556,-896.6852857707179,-901.4110144711672 --227.4245897089096,-293.05361587855884,-368.73356926569545 --17.96047466217999,-358.5328353768575,-615.4841630638161 --381.0609018227982,949.8085456204699,-177.77316601030282 --110.57444628332848,153.08997990228,966.6815368284531 --516.797447128474,362.5642210648675,431.9693870834483 -214.6488335861318,-822.8433207267119,353.7445516551529 --871.8105779276491,192.28529909979397,479.16235444348536 --578.0602187600991,683.2440150855482,-939.2923889339914 -687.6257273166123,-79.34189871446983,-564.824120136711 --732.443710012064,906.6143351647452,-854.6688248376865 --601.8131601281486,-304.355305133908,240.46969792224104 -89.60217055219687,-748.713015175372,-420.54403252357076 --522.4964578279519,-572.9142910193173,-177.71132704002594 -408.0629051833139,-565.0941355655282,-266.64224059403716 --218.16514631767552,952.9130588708204,909.3327137581377 -600.2751655041518,-516.6821583616297,-863.9253718166606 --366.1917245587505,-466.41090113233827,11.851600292787793 -555.4558201355862,716.6458777577161,689.7281708210171 --280.6488775538645,374.4686869213658,-374.33160495155994 --878.1889135296345,403.1305312058846,-980.3448948604243 --181.63482508302286,-341.24146139584855,386.75507703770495 -532.4909455207578,-391.81072805743236,623.2540288897071 --412.16647899013253,-107.34728002687757,454.0370540282679 -385.8404584495772,974.7369446244002,-549.6779515681362 -324.63582707916476,219.3638165515547,830.1969089800598 --687.2757167102499,503.59632717386603,136.53723253753674 --450.66826042418916,-51.13017170565183,-332.4468058604044 -158.6268055769217,778.0012216293317,138.60996882440395 -263.44483665316807,37.49569422941886,-897.6689871090482 --534.2828862478116,-15.99654113583449,-379.5294325105905 --636.4728044776116,8.265683836876633,-354.38041310429935 --483.78471365317057,-72.02916511923843,-733.4314838356537 -855.4914661508146,735.404195838478,415.24117148107075 --787.5723448230876,551.7545089393861,615.9146562180381 -535.5292354286753,-772.0682257615176,287.8159141355295 -668.649591498797,154.70680243933543,292.814750456178 --83.27304114738763,57.41463976810519,-931.2462832965496 -277.9260439465693,-837.1055742176816,-129.97081131955326 --414.6898046651844,90.85590042342619,-733.1673289535859 -383.2868039466364,590.0230738569408,-673.2911005136871 --791.3738252962357,-708.9690344252817,754.2551237970035 -56.37852351271226,-65.47800798499486,-786.5763617952914 -299.11201351392356,735.9991837901798,656.3717386469059 -252.1094179616025,-849.4425666966528,-775.2059456479741 --901.3820257803507,-485.04156701506145,-728.6770656792445 --479.9039194951322,-229.88388856207666,885.9655681422714 -220.7521195633842,669.9475713659247,420.70300142466454 --774.9937389467365,471.84081274789764,-449.8022368817511 -278.2156939894128,-318.0760527140229,995.3445265293183 --472.8970410064444,-441.73905845146066,861.3445111247966 --950.7111907273546,393.37797574639376,450.65278147175627 -672.7571548207986,948.8786212769508,951.2038383133047 --869.4464848670722,643.678645505805,292.6198673147626 -294.6842687461824,-743.3001467706104,300.3743328913067 -964.9651612024957,823.6371390788938,-121.7386783902989 --920.1040534278113,-275.41301999959035,652.7806232011103 -402.9982029303321,-81.31268881208723,-889.7969296823378 --146.21054435339477,-61.950120564232975,857.1110657882718 -282.17220716431893,-376.6941666907022,50.636528901442716 --867.8893843556798,945.1364712994737,-279.88019613854794 --44.26529017372843,-289.43205152615485,365.02346023240034 -324.4643166591861,430.64462105827124,-463.7135407761583 --368.663037671868,-749.4975378075841,311.0199436922253 --920.4057453286949,195.36467104691815,739.3917697032678 -781.6642965792671,-101.92447926007662,-81.39262357385246 --846.0616339839653,341.5300508860714,642.518840745691 --510.68989079057394,-157.39823673327066,677.6786735305407 -754.240935324576,-513.6400394715481,101.14126908272851 --615.0136987283458,-796.2424717208869,822.2410027839151 -641.0150084642182,520.0698036063477,-902.4673623737192 -687.457585420515,-123.9118481892325,-315.2097534082807 -92.95272205075298,-817.2935145528884,513.2930987047976 -164.87015377659168,-626.819806253665,-623.5356004619089 --631.5026968546515,-885.9952248961321,175.5968987433696 -680.6963551770161,-965.0035720252228,-901.9907100574529 -145.5405533738915,638.9913707721046,-346.52221886273287 --300.77120238455564,192.6929949935518,-451.574221751706 --946.7832678446317,470.45703620319205,251.29982588290613 -161.51199811131823,483.36825798364634,350.4616751240751 --588.2360236433577,-295.0379061132977,-747.77971664275 --740.2859731642379,352.3914927130784,717.2002139649965 -925.465167722278,256.69423509888884,-631.7973532780861 --788.6993091021386,625.7019430735156,157.51295271999857 -236.57004202743974,562.9241775094185,406.5544554649032 -668.9165057121934,-887.5721890802431,495.0412734930096 -701.7055146441908,-427.72991508337134,280.8945479865058 --371.6758723260558,915.9421329649081,-933.1528551289925 -159.58568766590997,-666.9929059009698,424.44041035431724 --648.2194331626758,-529.2334762032849,-11.258377908483794 -829.6698999937562,-576.5712557040583,-711.519957763793 -517.9536637080612,1.2390646678619532,823.5702247635429 --706.7708856803154,291.8557860460787,-534.24170769637 --686.4791426967214,366.85883031454114,187.36923981746645 -509.65491672466237,-381.07484710763526,-104.05668723562007 --189.05664733916308,968.1789279330285,-415.5020865212242 --410.36552330646623,-290.9035823427853,129.18816258064294 --495.35451147250956,830.5798807585479,-468.6288702674731 -791.6314631203893,-793.0498727068307,313.12540479930453 -813.9710368764875,-662.5011232035409,936.6539201985099 --94.23327916897665,891.4302168820489,353.6400872600941 --396.8262602528969,-623.3949501657871,-392.52990754980124 --813.9651814746501,-712.2640673133405,-790.6791193070377 --154.11291251688453,591.1567525151729,-717.2328915673196 --739.3591336553283,286.8578990346616,-605.6340360638674 --804.7799237820168,-666.3028435888448,847.4627917535522 -642.9425055523816,-291.8708752898118,311.6415346547856 -74.5513473360761,354.2485269651279,365.34230492551865 -257.46803011998577,-467.7972629253828,-921.9871584743637 --88.86643601978244,781.9477693814076,138.9945170371518 -664.7820834038159,983.2486859224564,-672.7675917234475 -383.5552782839645,348.58714740004916,959.9108947165569 -971.2014679056008,373.357223448259,-512.7704160356114 -597.111676261198,-785.9417315779237,561.3986083432574 -820.3922482893929,-234.3332104631295,261.27058996616097 --139.71453580634739,-124.46989002374312,-379.25822178375995 -524.2592409006493,872.3531283330103,881.5017184689223 --650.4374302501324,749.4872993131321,474.86288285424416 --494.3251986194215,-865.4307741569709,-464.0054662312441 -824.4164735630513,266.3573497915445,442.10932179574365 --485.69529778180834,438.7763111496406,-943.7569874441525 --249.35730845397245,253.5066970846624,-707.8068689173596 -646.0071488938695,-529.9374023761627,304.56222563689244 --189.60571484934064,192.08719095529432,-785.0988947421838 --966.1744001567854,819.1288547606023,-460.7399824656344 -639.354005560918,998.7006009444003,-577.1374840021776 --469.65851763328885,325.7195752693315,930.8972692012426 -831.6286963814878,5.751040131169816,590.2205650534493 --728.5082938001979,954.8763684080245,928.706468071973 --672.5420842416581,-401.1537503937867,-799.6900049864662 --456.5648022036406,631.9115788304132,-243.3687856694811 --823.2060657064833,-315.54895044219086,962.7666684825601 -259.3671905184058,-167.67810718768453,-666.92297300546 -972.3535945673896,641.6980185262576,-437.0453950981612 --859.8626085576211,-886.7488852448839,-759.2437009889323 -161.53716722884337,857.5268424109847,-6.513143988031061 -685.8909649123943,-108.22676028038438,417.16709153565057 -463.74547457300173,-652.0725881933226,-277.5678820483764 -274.6043130760479,-858.6067836312676,-276.91962447408685 -69.59893256238502,992.4489860892772,-50.93287475511852 -632.1135142286471,-135.86542986676454,592.7814452394177 -190.82960324021678,773.1908830047967,-178.1148952997802 -208.60883964295772,260.03736123765475,-165.2341163990534 --711.375912625037,-812.8811861753289,-966.6568988007338 -747.0685284904293,-527.050175522611,-576.9865014364639 -472.070800852131,-359.96777382521645,12.089384823673186 --674.9778694050874,919.4914429239384,703.1628000344747 -727.5792459300067,-186.45250285598956,524.7224274143457 --712.2476892204397,-982.7619948164395,-960.0541348439438 -173.20347480912096,-89.21018950411838,36.03069781703948 --985.0737191655612,-154.6267606851486,436.1363224017216 --114.61259606512829,464.4384126244445,-533.9620712063304 -626.284008963451,176.8624809069047,-578.4738011401876 --526.5590482923342,256.060929139074,659.8791864248867 --168.74443594168963,-483.39914174481555,734.0232138212009 -338.53658350166984,-103.82902543384694,-24.19960944139632 --591.4870641272072,253.60526012968785,-282.51497891422275 -991.2903533486985,-39.632969476224275,-28.228787620773687 -131.70357482134386,833.5120062374936,601.6361997195006 --97.73986040431714,437.3985319455919,172.4709975615233 --15.26590259750219,-615.3684544312989,-72.12747309021813 --508.36282595485073,829.6842997033093,-329.1863730073061 -904.5280290667445,66.11058018942231,263.0887573523207 -85.88088897865555,-741.2387660665981,-248.3575619841181 --801.7077754447521,245.90808836676342,-106.25160959912216 -555.9699431418737,-559.0590380012603,-670.8678831413301 --187.33553807246437,853.1707664367623,420.8436300248236 --162.1527504141627,34.54433950862108,-831.5739776458033 -969.1517927522261,332.81460938983787,-429.191863073155 -171.61678843048867,-781.035267862012,931.6733376151672 --650.4300242332681,296.0606361104283,-509.0910749221391 -435.1227652970715,553.642734480562,346.83945782286537 -228.998920510385,784.9381879040234,-842.7465780204839 --338.17046843960964,-503.4250407383081,976.0279241308431 --221.220440666253,465.22539848079737,369.45032776200924 --575.8375250452445,-522.0046395768974,-437.4308728939318 --177.74544348124152,-531.3498686989465,-960.6970345063044 -758.7861136143911,931.2196627617682,-316.85922593686416 --322.9862411490543,-985.8163744512581,360.50137666074806 -650.8797914972574,-706.7833992799937,-680.6673012656986 -580.1664999428756,232.58149670828925,-910.278884744566 -245.0939809245633,-382.1645543124679,-262.5496890583081 -539.4628365937604,621.8703853452212,-199.2867463203387 -894.3058720127094,-187.07456409585552,543.6720704602199 --32.24547087148187,795.0646530441682,815.5224873003572 --825.1663842578323,872.9866626204514,651.0696830408313 -582.6214286253337,-598.1773206289552,610.2384175093298 -700.2654693700736,-421.6993310916981,904.5201567246474 --900.2797072016715,-700.1814935057207,75.16227610302872 -151.58494224461947,290.3001666018067,-966.0617413690671 -920.7335492442605,-910.8238145317121,-713.8760945531952 --971.970964947886,133.7168665881893,864.5337678419444 -331.89433216092834,645.3149369608545,-973.4375930828398 -84.03059695945217,-80.87404498895626,-2.064111558413856 --855.573629329624,368.87072213861484,6.440829717268912 -530.297699722528,-29.418731876569268,-701.2367275471358 -296.513908155644,-655.2272757896676,744.7891267096297 -226.23247813848297,-685.5922328860916,924.6761149624137 -36.73092667064134,-854.2030962566901,253.66580883013444 --493.60218597437955,607.3869037546049,635.6441471323812 -957.8947117093237,3.7390620490074298,-90.08624054452571 -506.95121089296117,-735.0586873161469,93.83102758624841 -92.49520026170194,-821.0537543792256,-164.03182898617285 -706.5695971344039,712.3072439893206,-801.524670160638 --818.5582345043383,-474.60904599612945,749.532125107987 --742.1948298530021,439.9936052548926,-797.6687607737936 -246.27570749565075,-287.86540176171036,577.827925931734 --532.6191023492728,278.4036587799196,-528.6349308482302 -427.32056622430764,747.3560691214975,-746.3964017464799 -733.191377191007,187.15050882859578,-745.7790182659521 --144.91628928057594,-678.2794130298042,400.69577773313904 -517.7362688358992,-788.4069594544021,12.279705389288665 -629.2501120518343,872.3260831019929,27.03573348354007 -900.558447222814,71.37794091205956,-211.61901080018413 -696.4062571057909,-14.034579083821882,-56.194978870953946 --19.375021180343424,693.5700037394906,663.8830833761042 --192.96001511957763,-333.4002802589499,-16.143951921741404 -145.54501947421795,-523.3255787440061,587.9101694311812 --27.034468535154247,-331.90890316008085,-786.3580140720187 --522.3096791927861,898.5623435119674,-389.8006263609468 --662.2814212659293,-78.65441669001359,-385.82451327950264 --929.6814994576117,-353.7095654411655,88.21724787893709 -103.42474403993378,-286.8821576462226,-105.3944874947988 -931.0358364695328,-245.30304553937674,-483.54637348003405 --513.0659118664798,-84.4707745917317,519.0402974338881 --588.0236316230536,418.59225428153604,-957.7003533011674 --162.1340440321079,551.7301304055736,-322.5340884511372 -127.474202890799,-590.0415343481784,483.9907822523446 --895.4417934624807,705.0852897510008,-603.6072271566637 -748.7960634166616,-294.9415173989654,445.3671489489732 --361.549404427623,811.8233424692951,-746.7257489632512 --642.9604214548026,-13.939749682395473,-836.1231219237077 --608.0396305964762,887.5327644240288,952.9793222957744 --247.48134133915607,846.5720420278712,89.64935134686357 --460.5150682524659,404.7974421611973,317.80361314971447 -978.2506382174668,-469.90542518143343,344.1190053234709 --895.9524899411063,-772.7079226065612,-992.1632500978135 -998.9213621193462,604.5473942949554,573.4460294670816 -19.452150576359372,-399.86583418912016,-697.4714310746481 --430.6505223070727,-248.05755614172176,512.620193960588 -79.32357780630491,-845.0327468890346,-963.9419820821755 --795.3356409318737,-179.0025726052413,866.3858340980366 -274.8049624184432,603.6517997510302,-67.25081099090289 --276.6678336099144,-783.1992545667546,751.86604437241 -566.3200580558057,-663.7638048045497,24.521127752521124 --25.25038415751021,250.1831053730573,892.3737879825223 -159.54288352495928,80.43453355723727,-899.3541341306722 --874.1850479639521,-625.3064173464222,-935.0584566165035 -486.70579114002476,446.66060798792637,-727.8875311367142 -672.1578015905618,-690.427930307776,-397.64882600528244 --502.04620167727,-255.38580285390447,-490.67246822007627 --22.098147123095828,-185.1842372906292,973.1389815586531 --888.1472997435487,-715.6372472252967,-894.348212182795 -251.68238996475156,-890.9814451725608,672.8794747522466 -23.87726136385561,54.01524916306744,123.18901542438834 --658.3725873875785,-604.619393771025,-362.36535425399063 -186.99283164370286,-579.764448119571,-767.3365457334776 -940.2337728368643,-956.0363703807542,605.3948106720431 -576.0702991500441,-405.571772309808,-728.7467679853733 --708.7427065891532,394.8632344743851,285.61318217234725 -565.4913485027735,874.9623447982094,383.854726533184 --688.296926897113,-513.1147664691787,684.3874617462291 --581.3878483315829,-854.9553660910371,406.5601080845008 --194.94728901971587,840.0801050918071,300.510142187323 --819.1620444166786,895.7131345073215,-482.88547271950824 --325.57501918742844,-195.47917263291595,-897.5514071913735 --6.969155538790346,-753.3630178494155,-198.0593466232965 --298.58042401583145,545.6801668530068,606.3410232654624 --693.1742352218239,-266.89762524154753,-253.29367793633662 --697.17911212783,596.907010102381,414.45665667084654 --619.2364274059305,-266.55618281240186,-788.3899502869715 -256.4131941860878,-757.2561509027606,971.8683372498356 -561.3641493757248,-219.5229008320099,157.12786455870878 -822.6836324328176,108.1985607916522,-651.0030272040897 --242.59328883768137,686.2897300594907,288.42603197923586 -301.4487686676007,733.6429713769783,787.9461149250094 -839.5851435588727,-810.3016134936878,88.25200392620172 -481.01904243663716,513.8536902540277,213.43240394000782 --666.4253296326517,594.8411078833287,440.22266702989145 --827.7284569019274,-72.38035065124745,-652.0452009563928 --325.0459085740563,-963.8378155886292,-199.3402631784835 -99.75384231242083,239.16518565417368,326.98069025742006 -672.58262620492,-569.07418544854,-759.0363551230641 -703.0743437958513,-686.7743702147002,949.5201626723906 -685.076458797274,1.7532117791982955,962.8428498440505 --805.2465417839916,-393.86847764979666,276.4488300812229 --299.98626305364246,856.7451039615837,-868.7478236443649 -98.82366412192914,181.732534790229,305.4562475544483 --488.66755333637116,-270.86714496027105,687.3610593299552 --610.1144620596804,653.7356943467241,125.31084580548486 -524.3750223881643,427.2147325269432,-584.977009230242 -137.62547286774566,735.4463056101847,-135.7675263961413 -933.1815404466336,-95.56979979656387,-714.4287266642307 --221.1306398446535,903.4048127810743,-360.55830132029155 -736.1963197341256,762.5013633637795,-299.6269513360778 --833.4846838987357,449.11581831763647,-376.97540197202795 -565.8472285151447,-114.69030347913383,-29.46651531475686 -555.8188134970737,-235.27333787674422,-113.7453093541709 --247.61906246075569,-265.3189694454401,51.89315380291873 -617.5988890023013,-276.46337615486823,48.50944107547343 -341.4546508852018,-461.12110739268996,-444.95439019521484 -866.8262540469095,447.0691466621772,154.37335244661767 -295.44010884122395,-941.4011137931633,236.2059311233936 -19.01774644840384,91.49935955887145,-281.1523463383659 --837.0522045741162,-613.3215327758955,901.4894264253435 --182.60087545813212,-66.63368833827167,-894.580420293122 --924.8675409120389,434.36289409351525,76.18932824222247 -17.411968432533286,-513.7509391546627,489.5014632598445 --663.5268417830163,-620.1305126779599,-78.57565730344902 --427.44027577611826,-505.07403753370727,290.47528910666324 -301.94349043708894,649.0341395998585,-164.58286605404828 --853.8298179476996,-452.66723015708465,960.0109263936338 -192.51715046540426,419.47416960204055,-985.284340749171 -36.41146436504164,-924.9426849363938,138.46042418289585 -841.5416992721507,936.8382610008157,81.10535077784834 --83.59038949556805,890.034188496988,347.2196639933902 --870.201440923181,-68.54884466500494,-519.5099630713921 --60.3913571026369,-89.06885598727649,164.28960562948396 --286.4590193014975,-671.4591010881438,7.438869179912558 -660.4057686915241,328.0244561352047,-323.26426814956835 -871.0460455177144,824.4151424983643,-581.3032012318024 --921.1648297592741,482.61741670152446,655.2205226983065 -935.7291319027106,779.6727881766215,201.06953641282962 -60.10467842476169,-944.3178974748274,-506.68710631044434 --80.77049653414713,257.00780016713566,114.50366663682144 -485.271979363381,-440.46613822591826,129.90521530494652 --823.7155132184157,-172.6689528335861,500.321665909202 -386.801706858088,981.2854743443579,-444.21774802448795 --3.6214016520417545,-340.9391724520066,-118.79377188165051 -713.9002597387762,368.41815037697324,764.8823826951634 --592.977783336227,746.7222356828761,-880.4754516432312 -777.1985608743048,-341.8524410785442,-370.824733171867 -24.177153397327857,881.3803754464636,-904.4372706371893 --295.53804985850945,713.1439773666714,-207.89104512906658 --601.686204805866,-150.41163733717644,-228.89499701666136 -830.8324029334069,523.8687514861942,10.231111488012743 -976.7411334431422,-69.44493744815338,-883.5243383594495 --475.4513563700302,-127.85903956137474,-686.1947517077598 -895.1302526480861,533.6977956355463,-463.42559914445474 -181.60906703583169,442.89831421914414,882.557857813596 -763.2706983508212,30.384452276427282,549.3052395860352 -124.28950765516993,105.40778009108021,-770.5160833236162 --747.7246839676959,59.06723004491482,-462.27691004198675 --957.9261950790627,445.67840780042457,-935.0268066196701 -190.5536822081092,78.38758825462878,937.6293811556088 --31.57372130471674,-872.7971272444053,103.37593561292329 -682.1923412322028,993.6985685628799,-139.313652621855 --359.40251500651493,813.3065939039977,-617.5157418477572 -230.85783006585325,-188.57115163810454,-917.8352700888894 --305.42305138860445,-469.5429549946508,372.1823078869736 -897.5809953838364,-463.90562524272445,622.9318783033634 --889.280366123181,76.2420200796264,-858.8998725802109 -868.0659822612786,532.7025611147803,315.8998224091847 -647.7927632493286,295.03959114032637,937.8887943485822 -427.9158957295431,849.3172191644935,34.263784021276024 --765.8711740362746,56.35544284603429,-746.2543438738135 -184.98695835281,-35.01387894467416,245.15079566556346 --979.9060378903368,-610.3190166892718,-17.33913617573819 -901.0071231782697,-232.78191928968317,-151.25594789273066 -429.39217801324435,207.58551457223598,-402.1476998033336 --178.36720886514445,-564.6004022855351,932.0429182604171 --738.7312368852805,-256.3264308671611,-948.3220555599776 --556.4410161329072,560.9422767603098,-597.6495354222411 --839.8731949420688,-51.09364031095345,-980.061530530963 --830.4676911473337,615.2517391259503,542.9466897192128 -830.277640809792,709.030871821499,366.35112647963615 --895.3342853986743,565.697235973315,691.0216216811209 -598.164291543909,16.95807061605217,-534.1963227010367 -690.6599513774534,454.32561948027706,961.5223487777032 --688.6148044881342,-548.6708338958899,-576.4037002369946 -585.0795352426735,-626.1854070997637,-866.6803403533878 -997.1216131712572,-950.3655771097017,670.4881203177313 --269.2663168986944,683.2309195156306,109.24098242229002 -803.2624589727202,852.3859728292534,-981.803637438448 --849.1756480144235,-499.28254085828905,338.6308327270033 -776.5443930230119,-80.11609741207451,213.94623254853082 --623.0002944088777,609.9336677633707,934.6562227069394 --462.80213417080506,-10.348096798907363,-827.7677789872524 -118.2733129259368,5.566883693361092,-711.1270316898448 --115.86757376384992,-331.7906958268735,43.661750610378704 -171.30867085759837,-983.008842785581,522.0119658991107 -426.0285837234817,-267.4272275869556,-894.1281288623635 -509.86507957010076,910.3503209562648,-519.6968079559716 --352.9507725259242,-632.37422103637,153.8722466896793 --690.3172107050901,-287.61211307724113,394.02602786852594 -120.23196601869677,-227.07487134412952,-159.50079638491616 -124.22176524645897,-988.2705442256774,-842.9802630927803 -762.5161355260232,-844.2420218174185,413.60719242101027 -840.0763282181051,-458.63279139653775,-259.01712588097143 -137.84281168943266,763.4179392771694,883.8111745208403 -479.12649622253616,-826.7604782906119,338.30831106970163 --179.39255625467592,-58.59800101787687,-901.7032193096459 --617.8757213072836,581.0272150672954,-92.0823339042804 --396.6755167377023,-231.96185207008364,708.7990266513605 -497.99803480991386,-455.3692056378344,-764.9963195752534 --496.00355671185656,841.5129021094674,163.1776756995107 -66.96041748956577,192.78719938492304,-267.94346850696945 -614.2140406390256,46.57249860049956,-766.5041944624089 --741.8697503418741,73.71829300523677,873.1404361416783 --383.2957566476025,739.0823377184365,528.1911731577586 --504.3751141861863,-927.3185033675151,-796.3054697152345 -456.9878676948804,-600.6605239187065,-257.4581589892124 -3.3983320128496644,450.9363369003256,-773.5375534817492 --187.26718944507707,-29.85418171460924,81.6541279430794 -636.7212827904334,-656.6436099135663,615.6629036532447 -385.7568553933045,111.7416283979187,399.05574080514384 --175.96452209668723,-723.2048280637509,331.5304805307346 -49.34461337124458,278.7496010855509,-324.00243794302 -813.7331546796718,174.7397371511538,-829.1950314182524 --100.39201859114269,512.7121094872687,588.2691234645447 --10.805894472482464,789.4951416626022,-464.6631256114049 --178.8026055234668,797.1938211379402,792.5134329431578 -371.4255376493618,717.9610942444403,-822.4534660875347 -729.9899524155526,-358.7601868995465,-643.3369751435673 --521.2603273159073,-164.06298397222588,-497.61599079106554 --358.86482796700193,-730.0430278567158,-407.646468882003 -144.56762908400242,-116.29258381787213,-306.5624775281776 -492.9042577142279,787.0199427866357,513.578445804794 --335.99859576464166,488.8843356751074,-696.0396350518976 --739.3640238174182,-308.74592592768215,615.4047380881141 --507.3035055153963,-873.4931822026408,-736.5809295872898 -717.4899370591604,267.56656949457533,-493.5976732600467 -110.59165065636262,55.159244850700816,310.8719568813226 --533.6248911567674,728.8059743887954,-381.2628758399743 -388.2633079524737,-967.7507072555702,-254.68574021170548 --296.5803640823834,86.96885716602901,-854.527476445607 -580.2627474522167,-564.438396464863,354.0756297640205 -606.4242464881863,123.75391248302617,481.76641344397103 -323.72062443001096,-288.94040569598474,617.7170780671306 --410.59726022894404,142.42583550303425,490.7954782830791 --242.08818037498486,-394.46478476514994,-81.30797965435454 -635.9269886983072,859.8435262913295,90.16682571978026 -322.93241064730364,806.5472444778284,-802.9062971741153 --535.84284426767,417.8000125031649,647.4889238245994 -714.0580566611559,-169.78564629013476,-821.3201954162663 --124.43704540076021,-538.5308195858925,-417.6070900067517 -544.5351136750116,-848.9458279482262,655.1624349614042 --144.66182835166182,192.12786220119006,-820.695537528642 --325.2818432854407,-820.5981619703084,923.0874457622192 -614.5232986525009,-80.73449128707955,-552.7949033526578 -866.9102104997044,-310.80680854605646,-678.0311366252505 -126.32877690790974,887.5482406896322,-992.3394189993548 --523.7503134920025,876.8952808208153,-657.828066285676 --773.5130967203603,140.3744315996089,723.6876465896598 --45.780364612147764,989.1285133690494,358.34339907598564 --851.8501855791045,985.6642633639508,-184.2115264396191 --425.1949323090349,115.75836715577111,-391.38481635827134 --827.0849857596954,-997.1433138416465,-100.83329415947537 -673.7268444531846,144.6303712601532,998.4145978868817 --426.30670870560004,-439.0898704798893,-680.5010795321116 --671.8728234693297,-429.62680797990436,585.6800905470543 -811.5135812728956,950.1743394153625,-535.4206918070947 -762.5950912281833,-343.4898214453259,-774.3189109662312 -740.0498510403313,272.2112692872372,-670.5382078378766 --140.33748497399495,-425.4846102458647,473.5891374203941 --93.1675387514639,978.5598902127699,-890.5100354808097 --289.96946772750664,-36.199665780045166,6.267109496639591 --368.1283552287265,458.4804981951361,749.4941469779494 -877.438603955726,610.1867535990523,701.1603946131988 -101.09060123999097,651.7764528536293,-392.9921817040955 --203.04247578157117,-366.1739723629114,-65.22532910414918 --428.8407675227272,923.2228845088937,-374.3107439886637 --803.9109237781204,53.634332100826896,-885.8018431096473 --778.913667382839,-561.2212216075075,-71.29950023571666 --133.49813538194417,599.3837240055823,478.94930776822684 --147.3634120185974,-332.59158484874024,-367.06243187700284 -547.9901745880179,-895.8551875574606,-974.3567009787884 -591.088783853296,-45.707248021901364,-738.2377228928481 --528.8681308109974,865.0079061947652,719.005951249796 -419.57010044794515,-35.54953932534693,40.64725238277151 -950.4890705679172,931.5408877685743,-569.4619084283315 -622.2091326106363,-605.5146676659664,-572.9250442320972 -352.1860683291536,-189.99780282490315,863.0888142130405 --821.9805302079824,23.05128161898608,837.0430608862425 -808.2273209590103,-686.9415731685176,-266.7245998070871 -238.2428000933926,-681.2102304571956,936.0443440914773 -829.4986574553207,-666.0996419310616,-757.6890774780292 --829.1830343834695,818.8873280732623,-612.7523804090783 --167.43014291129055,-102.29726869599403,198.02208842713503 --856.5293125051501,-546.4827651989681,862.9807738378522 -816.820214537139,562.5812948113844,-961.1975087635691 --345.9864630077958,255.91747068581572,-449.6195764530486 -819.1733901075547,267.7789236648837,-856.1865653671089 -818.0111776714061,915.5333163524451,-844.5751632165491 -64.72046972262979,-393.27143557165914,-214.3218470371953 --640.6975640893163,156.14420402482506,915.9587064977811 -6.145200543218152,-834.1708372110377,240.00266695481673 --319.55401109748595,711.8503791825956,-130.64370336705952 --614.3207821155088,-617.7887546177101,537.5283614423208 --468.82480338528023,534.4667883184459,-588.2253784668012 --356.6272625973812,-69.0260551206012,886.3916993869013 -863.4628495076493,-586.2562491554245,-283.5619175138544 --701.2012230924554,19.970158626994248,-78.83489861066687 -801.5203249014648,860.0107555821453,-232.86521798541582 --16.524113962021147,792.4724982922662,613.415615490123 --992.6873773107014,-359.880871632835,-156.45151612774816 --540.5674326335366,-600.8567682081225,-924.4309868086407 -286.73945013952107,-474.9794190336687,-895.3056431373739 --538.0413789438727,603.8279056722531,702.9783632930933 --33.867509613394645,-167.85865918262766,955.7073870035636 --598.8706808238602,-569.2814342907831,-416.26564592720047 --654.4853634378253,-241.2688035916268,821.6684539795076 -230.69568125714864,-176.1069027754727,868.8215891424295 --903.0715350483554,-579.4476441962772,131.77721020351805 -231.10524638635843,-920.8849868747737,-193.9224841857357 -298.30792966174545,396.1410928068033,276.27980503253866 --358.8735512781509,-812.959752804181,-145.7751071613318 --742.491125263889,895.2473170413341,-49.65826795474345 --365.4816512862649,532.6081422378002,-4.102814835472259 --379.9319519750999,623.9354847816035,734.304302002244 -346.016332577354,-906.0711551846654,132.64576033306412 -526.5898239945632,-726.9939758328356,-542.6584972307933 -764.9902101362729,-959.7565562938519,505.454275651952 --52.45341497115419,-106.45568232078631,-985.8069350102256 -638.7964619329855,-280.350198726867,81.5312626010857 -354.6013726713188,405.25915287583166,911.9601176521446 -62.679906473218125,-200.56089805114482,907.4072529834159 -284.2204700510422,-403.6992874468888,-747.0715091928577 -685.1090029303625,-275.6367944116969,320.93944272886233 --58.367161268203745,-602.1404404099233,203.37321724093022 --878.6338620986354,-173.3150802576156,93.22987932734213 --127.90605176284191,497.3443505019816,655.8499090906248 -542.486148066356,-922.3741043763957,-611.7424591080555 -73.21501852754864,869.6440808876025,669.9135501042338 -685.0690167036032,-393.58361248065023,-141.10420584259487 --58.588105368125184,-685.2568333001791,-937.8637395110874 -893.8057989210338,-518.5748286729865,-520.1021925527374 --833.2418924624809,857.0155038875571,159.47422987954405 -334.0737142507078,823.153774526105,-308.759662198421 -243.0146222761682,-922.4010905422251,-626.4549435377413 -662.4916101798849,533.5367126766714,-298.7146170857062 --246.37874445157502,67.10886710715886,-999.5179906297309 --517.5113279239442,-583.5363827835711,-499.03410650047306 -611.8116850668825,-440.65228690711365,-616.9573558997037 -8.526921586063054,731.2900727454639,-517.3005923250003 --842.9275144144026,-287.1905283006706,495.3036491299556 -101.3810893895893,633.586739148695,919.1842952184679 -585.3249535032342,207.60615768750677,-13.316823895239054 --919.8618273034667,968.6439576280825,-233.0377548499149 --695.5435721662664,333.41771079291357,-431.42342180908133 -171.55654186209517,173.53581568918253,-108.54035819426167 -672.2372310900853,-470.06587688911395,-102.73481676453162 -75.38425718194298,327.2494415345993,567.943701011179 --210.3854342434879,292.093888193192,-698.7780938629617 -865.2962010849571,-233.88238715799287,459.04284395287686 --959.3178362356447,-589.625714190386,-25.83491135284396 -756.5049354646931,54.5102999013543,859.7409645877581 --32.40620683440727,-19.101806528100155,-760.5064229989362 -605.3124883044395,-506.069175065875,799.2249787446301 -821.6484406607922,886.6202237482994,40.460978206180016 -354.1875695672886,557.0317601233271,-737.9707626990688 -201.9143899949945,-931.4041973933766,-4.867833222548256 --690.3146367595452,-634.1541480758306,-269.9048666147969 --135.12566656699403,246.34484906437456,-851.1431631229686 -7.383522474889219,-634.7497394937977,147.9503500634837 -274.809224522367,113.41851310570769,476.59102095661524 --328.78151151819736,530.2131832662617,-134.4658365836127 --31.631003354806353,296.2042545221427,-963.283232001552 -307.98844284049665,237.17029814423063,-380.30576649344016 --828.4114302010211,-818.1291001739178,846.4474939704571 -378.55864245167436,-745.7947724585192,-286.55366138218733 -184.96598780319277,671.1434101812974,-912.678142573983 --526.7337370599823,779.4979805907601,-981.668899632367 --597.2017944122251,918.0483519459319,226.80369304434225 --476.65726672498704,-866.0178112083048,-943.6173191055557 --510.50984072614546,762.9716391778209,-168.17269140498104 -440.6667383319859,836.5700707599156,-183.9190767943668 --617.4452579252059,34.23586171383886,816.1673741197089 -608.7488282754011,-868.3403132736925,385.1456001551637 -143.7950449179075,814.926352692851,-755.0371662994055 -68.07222640931332,758.9253870237847,-179.95242651651404 --36.01016453426587,-859.0786446660834,-443.7127191021783 --350.98670166210536,890.2448974897738,-434.6652789176819 --78.26252946069599,342.60884712855955,-675.6332551842452 --27.115225716251075,477.0780789518151,733.7104260541321 -252.51854932485344,338.1070306338959,-747.4330548308621 -891.5529944926943,-734.8518450310353,549.3458743635965 --470.3673564433624,867.1862874025032,439.9190787389591 -507.62742595673785,-561.8816538802334,-113.92004672967835 -235.6263891785727,539.9472364132018,-792.0812481752208 -924.7306329090568,780.441341109112,-459.3028190088313 -645.520486064664,36.6478460796468,-76.38703687596274 --371.1317883771892,161.93717326318483,459.77823540719555 --178.1341900744835,258.4383860165842,398.6258423106076 -422.2436340305717,-896.0678037376395,719.4956113701339 --83.49337046990411,-475.1678366075711,-516.4709850406368 --33.971774312099114,773.6630789379185,-243.30483663470613 -499.4514935670866,-806.3625380255628,-47.88659569787649 -983.3722807854713,540.8756055846738,-578.9430231187739 -2.882947395821361,-532.7504727028669,-180.87814547498147 -560.1680474699294,542.4496305808073,-543.7992441952297 -844.4466363097204,185.13636552965363,-240.15141807597092 -3.8711615617212374,210.14250687548747,119.78106369157081 --27.189928927643564,9.865608178800244,-647.1761791442277 -625.4658086093586,83.52063988203076,-737.8402765905938 -532.3142031655559,864.8879567547017,894.6137984739241 --261.9645351776545,-728.9662528784919,36.799253266130336 --774.7815413015586,867.9748370252346,-632.840745289708 --494.4682800976719,-186.72694623005918,-233.6710628817484 -589.325784795778,-87.3663588980753,-658.4634799933262 --465.58020902785177,18.226770375043998,-705.0921651477302 -223.31135129202812,131.49461310229185,429.4046327645153 -875.4092307587352,824.5091222023113,892.1512361376626 --510.56880595259815,-736.8693867212908,-395.44659900710303 -790.1703455326292,944.1069492469765,718.649902140952 --779.9645577449128,894.8559961195863,-153.28394529842808 --981.3794184752926,-115.21251850361284,-907.8616606490648 -87.75584232223514,-322.89194512589734,-53.13013281190251 -226.3407214862341,737.6021916356406,323.8031529438572 --131.90226304363864,638.8557073407301,811.1642751462643 --760.4800671356056,63.865955105583,-430.9760805151117 --905.8776042461052,337.09339022797076,725.5415549184511 --674.1946910452119,624.8273152478009,706.7914670738833 -828.6808853329669,-469.4298218278951,807.9061303797785 --358.6744905271355,104.67602691100569,-898.9850583354357 --912.2378232625128,440.7464254644058,-111.04004404441787 --487.4152492615649,-619.1730079501797,339.9069817184361 --999.1969119493202,611.7823383937084,-841.5007877401424 --617.0207701837611,-227.52720940182076,-30.282520567792744 --290.00976837211635,-358.5756700314122,927.8320241463769 -283.1593624867885,-953.1340892652236,-139.64818311137367 -750.0173994879403,-397.0876271786641,-810.8873104512236 -516.7695431798356,212.02766387216252,140.62501565300772 --892.8468807851841,-719.0019804089653,245.09879242622765 --584.3523170823285,8.140159496848696,89.7633720587869 --432.98561945812116,896.8503110829856,684.9282136711504 -444.74701526559693,-844.0122671811819,-787.7399613819612 --14.437308270088579,-678.5733016180286,956.5309270589482 --682.9595319451811,-25.064329072052033,-271.75788631698913 -278.772842908196,-741.9271822211501,-139.3671439152182 --450.5899343857127,775.503049343376,-918.8285757306098 -827.4549880129184,665.9882771060009,-404.85856711836914 -578.5813093542095,-937.5728793225048,933.7311005867873 -53.189885179578596,-393.4379478691095,-274.8335748106458 --867.1892930790052,978.6990280840785,-921.4161096986151 -309.814246295718,-114.52814458708337,897.8324363774302 --508.0005193864097,64.17364787602264,-35.28758283449406 -405.7328881002027,-863.979536095159,-612.4217399532903 --570.8703598143004,476.30150968337944,-621.7226073465199 -146.9835277819534,-569.5123589980926,723.2499001679569 -884.3709089792771,36.98594988448099,-295.3822315816434 --531.8844499650017,-900.4379969539125,-462.9998476050092 -308.4715598906357,67.23386261842165,888.082556561855 --207.44547501659883,387.7266846567891,-21.354505049757222 -25.152431848423248,-464.45137079176504,-90.0984463160006 --58.43000597458547,413.28504349786795,881.2799983722277 --341.35744503499143,-915.5990628374032,-7.409748998720602 -88.92266429833717,-663.1188977361695,520.9292125521333 -969.8582168829832,891.5494340169219,-605.7879223526957 -750.7264798015215,408.9872728233695,-92.3068723861769 -81.22198864945813,699.2003499649163,-39.73012072325366 --253.58526178974626,-13.505013948028363,158.25960807009824 --621.8446924433024,801.8154605339814,348.3738976592276 -266.53783467497783,-801.0075476387237,208.34787634518352 --758.0786755230154,-842.6046496092019,54.621791284786696 --194.42893190701,177.62054031244634,-821.5556638855228 --138.0338743054832,-650.4265699096841,974.2001718482331 -122.3004248703487,374.8737218817346,-349.16343863478437 --810.5221704413117,951.7417255670732,-427.48192923363365 --152.3836296528516,299.72784340515,-950.6054046277775 -620.5182610345739,73.15638005724054,-443.56562586235566 --876.7840294150615,-675.0031690511171,790.0677177068737 -372.04844787178195,-500.1965567262203,-868.7984701099409 -381.23062477327267,144.8154519355303,-190.96095108352995 --272.7771016198724,-566.3714481417834,339.2225130750353 -941.3360555877409,-648.5695083263483,194.23324003100674 --151.62988850804754,-106.62255651067017,-491.7054397443712 -650.2697513228381,-29.48879170551777,86.81170439652828 --390.47817440534845,-636.3830686661005,-828.179223594359 -428.23828184983176,-607.5314366242887,380.1507083775955 --219.2471079060922,-168.4503980206971,-61.64500781445656 --264.5829837449136,-798.7600455548198,-380.73637999430844 -327.46872138787694,331.568802937742,-427.5513855200113 --79.79474688462403,-613.1055439761251,-579.2558369403284 --953.9058231867851,793.4930998154891,-578.5866698501876 --544.9322461270733,-440.7971347097364,-745.183856609142 -278.52576636272556,-849.7140936448269,-731.5951473472994 -289.5134531801857,-320.67875903711456,415.895653402378 -114.84948934028398,-487.95765387697384,301.65590097865606 --767.4526394142387,72.82076616006088,-125.70378990993072 --464.2528343651185,208.00999547900028,742.667184680565 -997.8093995261534,215.5255374868491,-190.58825134165966 --549.5857995675967,-485.80782120977653,-41.09004370046864 --265.44459743858147,827.6290452498883,-263.4090646885809 --253.11081770912904,-232.93097513204611,673.2404207353161 -301.5766416938038,228.33770063778525,-331.7139552322757 -635.808353664879,-923.2722772885977,741.5943446762262 -25.499799587859115,-203.4995302731744,-5.66543856462863 -334.8310610676622,-974.4691469642053,743.1037129164954 --106.52094937721438,-314.0669605998436,-723.5088687318857 --121.0692512831157,-7.354457431242281,-192.70661101304438 -357.32018765379416,-158.20694248154803,922.8351556931466 -198.5550356471838,614.955871303818,-781.2881937810423 --205.4174141081886,-326.3045971056946,138.9647762731836 -722.2270401228511,-843.3235644759867,-854.8504039105784 -700.6354163151977,-574.2998279232852,337.5065088996273 -85.75626472161025,665.787189774459,-749.8221803271929 --740.4340685547775,113.63672055661505,892.7573067167418 --170.00448325849152,-346.11579949061013,213.37864639577174 -860.8972010900623,673.8556656892474,990.9672214664397 --954.8628335952458,-774.2837105744755,218.93552673324393 -641.1528786676995,-429.5113153864669,-521.5778239315625 -573.9515987624018,-887.2362922935368,-261.2347048348298 -11.618445184659436,120.6973487006469,457.23031358555386 --290.3085531386836,225.3686893492145,170.7508455819127 -95.23220130749428,280.96658628442447,-481.10165786384744 --830.702492830742,-761.4566559205132,-550.8352346921979 -0.3958710455705159,680.8855010920402,402.58668417676813 -578.0812084040942,-298.04875214781725,-190.69251670289964 --212.63622801877432,-616.2536311909969,-877.5666837128559 -181.8321856544535,978.4333668411723,-666.3405900994744 --906.6303602014525,559.0633636478658,-494.8279866305516 -659.2876107058567,407.87333406903076,891.3470741016092 --182.14552848665596,323.9396789012683,-70.29043837345864 -261.177394617087,-100.80218798452529,-622.7355071518504 -15.794832006761794,57.16840287488458,621.2076965203221 -471.04141158716243,327.58324788288814,-773.2258088948549 -441.2325813274301,0.6103127090295857,788.1990722123185 -839.7418682610855,-889.6868187964291,641.2831207089575 --924.6052191546588,-265.6607486099547,84.59995124215834 --703.7984027457451,492.6276251381537,-983.2905916557229 --662.8019031319263,161.59365970695148,428.7751240745847 -833.2862053878323,410.9933038692477,343.558540509732 --211.3177072986714,-997.4311489463971,-759.6814825287561 -69.1090895120783,350.25977168883946,-165.103432207075 -461.35802305678044,43.72459066435749,-851.6476088113756 --615.9674980641023,679.9964464878858,449.82549324887896 -789.5239740249899,-764.8855017581268,980.4450692301477 --581.1865721001328,-976.4402474267159,994.8458781071083 --437.8522291097737,336.0389050251199,-646.6353716473895 -160.45706439828336,808.0699729091186,-359.63766514312283 -340.5079520887184,-624.1928224031669,249.59079743745042 --327.09929636497975,-577.5834828240967,-373.63589859272975 --642.3178629844012,803.8322156757656,-205.62622736574235 --509.44139005126533,-103.18431796813422,-358.9276663870089 -488.838507626652,942.4398237709888,-123.9326866047063 -722.0667999444809,131.72614711923893,-685.5286698115331 -381.24548416268317,26.868994251640288,301.2130465042069 -779.3748251433299,-119.1308586879079,802.3552464347113 -501.33802856330976,-22.790148244030433,206.44427131592738 --348.83773496197716,967.1945994775483,334.7023261007919 --912.3062950067402,-346.75618850398246,246.62886751811493 --887.3334444015204,-952.2316173617145,-99.95152094439482 --334.61964061465994,-123.40278393366816,-474.6133802399896 --670.5645061140382,378.28671396067534,29.142232535600897 --599.6915775012664,-360.82114748000333,183.61581532665173 --855.5413034550443,-705.0939814676409,-853.5087917852197 -624.6346654282377,504.8184664240184,506.62586375851424 -432.65068695205605,338.77084733973834,-46.01616924364998 -284.55632701422996,-923.2768904240507,242.92884531356913 -555.7554110737544,0.7167207687804193,-284.9733431455261 --445.1465303980417,285.60410032416485,385.6023972598175 -741.9351997250851,-315.33183507801857,539.5446147711712 -122.71164837867582,765.6729813561583,55.62421659124152 -35.25965679593446,155.75416288181827,498.6307102848689 -929.380957656922,-852.8732915684686,-893.1307952179657 -875.100674814677,59.751251036412214,229.80602913387224 --35.15279681054233,-812.685094785051,536.1787568373331 -494.4492901771737,-376.593357014376,-387.52150954319916 -675.6827618110369,-855.2854845173467,762.2102967131316 --486.67662020817113,185.96949551098783,871.9883580035555 -356.24500307329276,-171.14037506592683,379.0684178108304 --312.0407273672596,-445.48316730162776,993.3665558693594 -501.58046235957545,289.43995476363534,-289.4207135613625 --901.6783416899037,-937.8862479296888,108.36251089759753 -524.065442078102,74.75838088771025,681.5701438782291 --933.1469338135568,-266.49584714811976,-525.8592176516439 --105.45406368575595,-855.247213611755,908.2632831421452 --553.4891978612782,844.6155509671696,-148.21368992663645 -971.0482665104362,108.11676692042147,861.6657283516149 --989.3020226115543,496.4776123618003,806.1013062050308 --720.5588660420918,-807.748296535697,-150.85478562808885 -867.3578122658703,84.77312038087757,54.91292744346424 --717.7477634013562,-998.4209778135624,620.2801814909224 --824.8508740275236,267.699637470648,829.2329090303829 --582.696173683138,330.5456724738217,-842.6028465849811 -207.51028767522598,-672.1365580935945,471.90712103035594 --397.5374104121836,-73.21798239070756,198.86108405524328 --657.4531786675209,483.2756372352419,-394.71931872637094 -324.743719825507,-683.4338986012526,376.2353184127005 --743.6238543790765,-149.28700746003278,-505.58785252224635 -496.7504988563651,-475.9299909862509,763.4346127907925 -783.6404228132258,-607.1173695544283,227.6918900154485 --824.5647165600714,-216.92580079674167,426.64345900254443 -318.84649369983254,249.40133881321594,-434.9182726751128 --243.950101131196,-794.1077105994276,438.0456408672019 -7.77759358254707,417.53126469130916,-502.11295040625447 --351.1235427298676,-331.56932547977067,-948.5151805055676 --317.90425433875293,606.609147036067,794.5969914994771 -36.43663127185482,-88.99660956155958,-938.3507626012595 -758.4086751707653,-973.9795731482545,889.5001604204235 --21.567502623818655,-316.13101285054677,848.4368696853201 --951.2180137798065,162.8497897381742,97.86504899867532 --561.3591975772358,-142.22513729957882,304.5280118875405 -454.262393763855,-998.5662825868404,873.7068601820306 --670.9492552143752,-532.8391315552816,-473.0531086123035 --924.3597268959294,-753.8957528193502,972.699845888324 --369.5665252454279,-769.3978193219014,-786.0174776507533 -438.9199353399438,709.1373280652817,-486.09540098306024 --958.18097532953,-553.8199631092884,-886.9686184064853 --793.210126739917,-136.98376030471525,-540.1632582767348 -31.891757050846763,-493.01249348561925,881.0746022058952 -811.8879358525292,133.61221002093203,-291.1520160252277 --237.70623593052892,-176.29543371100613,455.1586442698881 --96.72200896232414,713.4598930117947,888.1895718607291 --328.1076932421323,121.38896275136017,-809.8869263348711 --599.061904467282,-173.0684665796798,-587.5945681964423 -753.120981577435,-683.4274878818039,-88.67835689381604 -211.39848091975136,383.7278163216888,-233.8612605469865 -738.1981374494571,136.63830215585108,-120.98443910489641 --865.5187318959267,-70.62106310966999,641.4716816314606 -229.08203644263085,664.3249074582368,-11.976658801388794 --763.0765898110363,-972.7203083282378,-393.56090656281765 -395.9809429955849,580.5198078833876,-408.4943307593412 --8.69215823350578,-157.76219113183674,-178.9544312971443 --537.302573599699,-727.2577899410833,-606.6228835375738 --889.3352256733078,-603.7385163528459,-981.5982047492411 -254.51680127195664,-367.2491852246343,946.2894228538173 --612.5658984474043,-308.34285938081223,-284.31768271693363 --983.0970078750789,678.4159060789179,-936.0110797113506 -880.3596694584828,784.1487021872413,71.04383217192708 -87.19114982258407,307.55584591231263,-225.89997613022604 -294.4445667957109,-910.4632226230262,-891.9047453005469 --85.53916076091127,99.24460221206982,775.6352806716379 --790.6787321842075,645.2958543877787,-579.9053254158608 --211.83270297993624,-366.79513034517424,-199.6894542692021 --699.009003854829,7.140148807109881,603.2851796627344 --116.93197924220613,-18.772848203601825,697.5351705626285 -412.11622927606163,-19.0911829604305,-484.60870362164064 -769.8534936899332,154.0408033811168,-557.7047797786132 --461.76049472397926,606.2661778724919,-911.7088758250891 -984.1843740576401,-739.2966405704165,592.1370507938748 --210.44936645663427,-15.567633425066333,761.3011549291557 --174.17762082157356,74.98750734646887,-901.4006751816601 --995.3050522650937,-510.4002539965482,361.1661858375346 --757.4702132817266,-772.4760823909012,-178.0787839281934 -295.67407721645304,424.1439844958611,-643.0986518032505 --840.8237052559151,880.7940678910884,-478.66723487579657 -706.6929952174476,726.9829009256366,545.045183525089 --662.3327866948598,643.6029185084008,538.5011184831733 -193.44598021243428,-325.5959296620945,-474.98279146691175 --756.2215758392821,19.514133801742787,170.52175101969306 --281.3220189684256,-49.281864638262846,-272.97108526146667 -282.0121146414026,802.5184155931267,-672.1594759061102 --237.18238019375315,-718.2627920982774,249.8875408156639 -457.7410189771915,863.8254651949117,-442.25614747807015 -900.4224117308604,-873.4746563586505,206.02772672917627 --885.73456131334,787.5483755238897,59.61811414010822 -338.69670152559206,663.1478518209051,-699.3787550320625 --922.8168761237323,757.7622918257043,-370.133545082135 --742.0421841456695,-63.07752582582691,196.6121513920375 --938.0587931549798,-450.2086834858245,-934.400251446208 --159.32922160900205,790.2000581324887,965.3048229871383 -274.09510700725514,-676.7246124308164,811.6987799986116 -32.495646400120904,-692.5013757941638,843.4533389033227 -514.938101446206,463.4105454463031,418.36140758880924 --599.3203578071153,-577.9866165849478,376.5859968545101 --560.5544997792063,-122.65660639390228,564.0036511878827 -567.905036195682,-93.47645494828066,584.3798765504903 -677.2435923961136,309.5515025685204,-543.1482953831596 --451.97643922890495,-370.3176891825293,-766.391784532096 --453.68075926010977,-580.9615513749358,-89.34250038279572 -816.87509574453,-791.0393664920839,440.53584789479123 -374.5660088262555,-808.4916026732847,845.1448098116002 -136.9444043136391,-272.54895772863154,513.0771669906133 --485.2690831967319,387.0196740926408,-920.5775848555056 -678.816075218544,-103.65830595736304,273.38582871588346 --557.5243603866327,354.1474253168958,544.4805517865532 --53.573626231202525,235.4538481235886,-87.34815235520284 -788.182738515691,-4.261638971361663,683.6174180576377 -602.7041165404971,-178.99035730328694,-539.8310162850499 --187.83573488045806,652.4347515504403,-544.7349283612152 -48.872691715498604,612.193495921495,-293.04504974324243 -284.41927400539475,-508.736851902371,-781.4411092636801 -588.7684501857127,-802.0627531825863,-457.2372098408308 -710.2188439948802,-307.0614258426656,946.0906990283222 -959.4686695477194,-463.44795909288666,-918.0435555002191 -410.1265684107582,-98.02699470331254,-798.4943120808474 -415.04563795608556,-937.6501817761575,740.3933809844843 --722.6949417733925,-745.3762425065499,-648.6554040628309 -920.532716984133,386.33872050769196,602.7430709272735 --204.73002853449395,-327.3745449900889,-531.0319864336601 --38.70394337518212,103.65746706833693,263.5496873055108 --485.762992002611,897.3081618059812,-660.4830035857283 -931.3063495328247,-970.2877549849924,-37.74861636630874 --333.26432376687444,-101.75317213949836,141.32915796157818 --128.8216839745819,-170.30629939681012,465.446830826613 -371.7525501729292,666.5425640716958,-500.0820375210089 -219.05701950812727,170.38957078570775,-260.52437825462243 --27.88491619463821,-372.4357133885426,-716.3112047660296 --572.3975786745343,-788.9727071975979,366.13915038024834 -321.45478621830307,901.2127431597457,459.3568272944826 --895.9083224877371,768.4903478579083,725.3503258914516 --113.35935845460267,171.72610105584317,952.1566649450376 -64.60872769633261,810.6436567521796,-833.9224843796271 --617.8962625826343,-118.49011311736433,169.51361667460947 -632.4557037256004,976.5242302863737,-222.29700705176708 --905.1687277198301,602.3430065906496,208.76143816561625 --602.9142822635966,-10.343086757159654,484.6204910674487 -540.8235741372876,-0.7631760024760297,-389.5709397422818 -947.4851640769871,326.7252219129857,-183.52496130740258 --439.07355159069516,462.2059660071243,-515.6331088124646 --656.5800220526237,59.66777792414064,-420.02521471171633 -257.81028984723,-764.1226502515331,309.88220913464306 --433.4069440045955,-999.5141311309745,-746.1278846516473 -867.230755670188,734.7092782307157,-532.7819359275263 -556.7438090909825,217.14318634794859,941.8094228997388 --252.7886809318818,362.92122503434257,-872.9285551521629 --207.50530636718815,927.6353223763608,77.96174890024099 --424.24099333031086,-759.4580737427863,407.0566803630609 -289.7120868594536,-252.1225727924508,901.8827037316685 --955.5943740242993,-392.55229673634835,842.1389725991628 --358.12912336111924,-495.4943322896592,68.44081986249466 -647.6034998410757,-793.7064782432778,886.0414192914723 -590.145762362328,-637.4994888968961,424.0159223963253 --230.08255472488565,-195.41064384736262,566.5801848777328 -925.5696159614645,-746.6882543056122,-158.7395262423612 --38.11678383139292,-247.3763660900048,-273.62175256754995 --895.4626648768069,371.0772411252465,-127.57116575990926 --610.4123947121465,632.0670046041369,605.1214963032558 --27.21674382221238,-403.098677704479,276.18545159290466 --423.6957284451938,-527.984139352576,461.0293080526533 --919.3495205580986,-810.463057930812,-986.4236519528205 --694.1136270491477,-862.0199825790811,991.6047355598371 --422.38006009182084,-701.4639746615055,-518.007484008164 -872.2511430802692,40.32044604879138,-270.36380738428625 -746.7829158184386,-210.01945890193508,-329.98286008460843 --585.434954900529,-244.406352181177,-366.63128796614797 -354.60791859628193,-420.83459065854584,154.39949284512295 --868.2156699360546,-617.4216866069712,-185.18945677730244 -873.898507817391,-245.49602856860918,328.14824239966833 --489.8255551572037,-745.9328480535365,-882.9267998398998 --389.17300291449726,-684.677946406184,-651.9791039677516 -521.5186167739,-968.3238581102515,115.62025147086888 --241.07723881307038,13.099999817094385,125.6604744292058 --373.2646110854437,-409.78227963142945,466.8036986698114 -742.5539762423143,-614.8367350829442,-804.7624789297021 -795.5916127840519,-300.20907270520274,102.63478132562841 --280.91371095999307,-748.3953273078973,178.66328989545605 -50.2817035392593,-594.0128816176056,-96.26191069544427 -593.8950080312916,180.85220621578264,-806.1653458660103 -96.04299445827019,405.4765985791737,585.4068115615028 -258.2351572685336,-694.6836709184325,420.34653318032133 -354.6836921630327,-951.1462341187336,-176.50466481951366 --334.09950607525343,338.8241285072868,-567.7283753781585 -181.743845948517,826.4119236283448,595.6047444172154 -842.9154724330608,957.0119338653799,-978.6597459876745 -245.48255275495512,-174.3212044821871,719.7089806702434 --496.3705959817366,962.0589782301522,227.4159390874945 -587.0748044576619,-828.8008943544634,-633.08423048227 -516.8073460684063,-956.0269559213527,633.7559717875656 --972.101962616177,314.23767812254664,-269.8121595363882 -222.98970543839823,392.0628139782275,-315.04956162739165 --784.0751037783289,-860.7082645034687,177.8720451250956 -41.31070746822297,484.40201824226506,19.471020007874245 --155.1084199382418,-203.82564352753832,-947.106194804665 --328.8855966066857,952.0403150489885,747.1111524541775 --341.24386593156464,175.5908101327443,694.593491070988 --117.45132649986272,-964.084272499698,-850.9790763627199 -20.78544269741326,938.8787513517566,386.4190844377356 --858.167617122861,-621.2782484162744,542.6462864337 -682.8795199124895,235.3891723771817,288.84633925963317 --943.3250992332307,657.060519163017,576.5504163416592 --481.9297117933057,417.353439931014,-570.2907871500038 --919.3396778969741,-597.7269148192454,-642.7422464914009 --324.50400653030556,-163.10100564908385,17.077782995415873 --46.49224898334364,-458.6507880694213,-941.6586628518511 -210.2032444743013,-208.51034030529127,-402.6556852249006 -733.8820856610246,493.48661559631955,715.5310967448845 --10.034410575078027,-738.137495746445,392.4428722425448 --587.8524401256495,-117.5406618165664,-869.998422102223 -650.6168048459649,-748.1187179049989,806.1950140986194 -728.4612045231142,-70.83447112150782,488.7364086079813 -238.89014763630666,606.1512846754897,-136.38979842817594 -571.6169684887,-75.08636586970408,881.9315756855876 --27.255798349704833,-74.76145613254096,570.1437231270254 -643.155383521676,108.97822864234149,-640.4043730098492 --64.48353808484103,936.1450058193568,505.97238607837016 -622.3252077582645,-934.3490023615198,-64.28107473168018 -293.24226731511067,660.0653672561493,-901.452692834457 -704.8777712837461,96.80187348382333,-605.3720588478802 --365.48956710059997,-436.14089649687844,61.71806857695151 --896.6286401777363,-682.9276830001529,625.3860867515648 --734.7920185063779,-533.207461083746,-93.25878879168533 -34.24177622666093,527.2209592283173,-105.33514666762449 -579.7292420710776,236.69261409091496,-773.800521152355 --687.3371232143229,-125.93254910045835,-206.22121382192086 -487.08853927458927,161.47427959470383,-223.7338379955014 --658.4794330992288,-546.3257953490097,151.00203693811795 --153.1223902004151,29.85501772134421,-658.6451293955326 -325.81250468913163,705.0774817119341,-484.1209864261988 --16.971548336346814,951.0546580418036,-333.51651889854475 -190.09268984752248,-819.6085995995113,212.03000495888637 --820.7364533907642,918.470870647644,431.3253041446228 -576.3195762714129,408.20872154327367,179.45807215293144 --100.17443782898931,716.7467595221249,913.6713350861262 --1.927654191837405,863.0700983105239,166.66581997703497 -76.76837379286644,-91.03453408928658,-581.4244769397603 --992.5606783638816,-516.9875462878774,19.446343207130326 --240.08009548049495,-103.02954399473242,961.2964391280991 --299.4552586613448,-95.63412127978427,-732.9688972943609 --904.0845351260248,550.8190291849892,141.36635014395733 -521.40961208779,-700.2744022268968,143.65754236538191 --492.71505131724894,-543.8763661999601,-976.9479718940295 --739.3185528618562,-381.4637770006093,-766.2424788181219 -971.7168808218751,-382.7347029520987,-739.3521065953437 --601.8353743440846,175.40645668295292,-871.9129522704229 -724.8682602823137,922.9993584742947,-506.50515866523824 --99.8094628182813,-955.7310979410058,281.4204494544431 --172.14788389482226,-459.88306779688855,-586.3257787667831 -308.04615531752097,-167.56593793537115,-640.6814219401759 -378.2181629736481,130.1445660733873,717.3441098589924 --765.0482022470142,571.3332038889123,347.033573634518 --769.9781263438043,389.6414597434414,-116.90542224033913 -889.9695711116863,-716.7772987642013,285.66678163147594 --236.0399090741081,913.6293411817555,-340.0502094194471 -924.3718189836004,802.9717022014981,-459.2335293786873 -607.0835536528555,991.2084036070119,-494.6739956574353 --126.4456613533606,40.36147313351944,-410.13772839227136 --969.4703207079405,-559.7415116049467,-436.1262313164831 --112.80059736362568,-657.7950431731963,746.5087133833451 -409.82226546267225,-829.599044880676,300.18490227986285 -307.31295281124085,912.4423472872554,-993.9582572876775 --504.1351003883856,855.582958750631,864.2678307965662 -441.17283874127475,531.52664209508,-817.0340841407058 -27.751669556467277,-536.8340174220011,-637.5639127727654 -620.606598246665,-729.9237266389051,-62.696726007229586 -877.1564791720662,-628.3358888693149,955.9868474764692 -988.5759715221182,111.23430936480577,-659.7145196456842 --367.7902241182087,-151.01433464692968,-381.35155128355416 --438.7288402469685,944.459418432715,-693.2703451685087 -466.65581743372445,-999.1794211216503,192.36533880475372 -831.8860079081048,-424.13181181356197,-628.9480494845616 -303.3595897568539,425.2028145967863,376.06103790396264 --361.3662399572519,-495.5951956813382,911.8375999240884 -846.5990165398589,-85.36678021435944,692.3877323087468 --95.35304473140798,-151.2219638549792,-686.4741048014107 --147.18788701605433,74.83387719961388,-954.9913451426271 --111.77398964918711,562.7124367904007,360.09211274853965 -270.31397772787,819.110856874405,-963.9359803495399 -114.09517238446824,574.6976968194142,82.67076540253447 --352.2088948392417,-727.4988698160444,775.1261436323825 --58.475215224794056,756.2303939714027,171.7042448663367 -348.38423323000166,608.5223087569,318.3110892002687 --203.8903186421246,27.266767857302057,606.0910493517597 --252.6994072540316,-223.75708646300586,-808.6197678839977 -829.1688704434955,-817.9273701091165,296.41835489711184 --173.61104239440465,-188.76121948911532,359.1036731453678 --865.8125347402425,187.41156590286914,544.0635719447096 -656.4255157731884,-658.9392212124494,794.8381001563473 -312.29218369488444,763.7096016413657,-29.438565779603437 -84.06669019440415,838.0765540573423,799.8190867093435 --103.67825326199602,-451.1747367286365,-213.6591308714717 --224.47134294050056,-426.2662500344121,-462.8407913340668 -722.1258729594388,-860.2761586306766,355.2223641991882 --654.3598970870954,-310.9882132118736,-876.9139317303263 --460.05272628907585,536.8421422344843,770.0306490945172 --556.9456961952659,-72.90432148215632,-59.351904125587225 -747.1506115194684,525.5981057516108,26.154436736099797 -341.4944009435467,694.7101078187336,-980.9220919489101 --194.2199378999028,814.4863345541573,480.62606168790285 -85.68274866814932,59.28905407026696,-304.4598047911245 -41.04106728302895,310.7663989269065,-163.27392314241388 -428.306292784348,722.4644545207716,-690.6303036302777 --96.90595436515116,-183.9598174298378,374.9296080994561 --500.2650694841413,280.50182990455255,754.9784834629761 --163.73680041275463,822.03139995844,986.3274778669568 --787.8159001040958,-533.8936240302828,900.7595029641864 -916.6553729627735,-804.585449226483,-970.0029992457266 --677.7999534871556,992.0255667644965,-640.0007667786263 -5.095213444046294,696.8354528610221,-959.1967786235873 -208.97796451691897,-445.9491022607514,724.6698328794632 --433.0777014718417,373.5114405638178,348.4392648947937 --557.01290228072,-930.4016002632998,-181.50085242920545 --421.61369606826065,617.9554992274172,600.7283769106905 --85.95209561474906,213.0244506464378,208.51903197385036 -654.3162968552467,-149.99517175360495,-449.1066404189819 --469.9301637189051,72.38455856440828,-101.7035945355749 --119.7584580301276,-817.7253218205856,437.2074813803913 --572.5266240361786,-606.0927395825572,-174.48335944521307 --544.4433167643972,167.71653461603069,-257.07332133105695 --102.17655481441977,74.33864320805765,-592.9289550363903 --688.4967542689404,760.8438057472094,-132.55259433715798 --175.81278073492172,-928.7756994543171,-4.047394825213587 -108.33944322200023,117.68174190933291,414.0623386457687 --645.0363300179765,-495.55373153876235,621.4609304608255 -894.341233686788,-728.1345052653587,-4.700890989563618 --571.6474945208263,-879.8536632900351,-348.99332374772916 --712.6247496315746,419.8661468684925,67.45082734288894 --712.3310580193782,-981.5168231889712,616.3140980484254 --647.6111876715049,212.4332844415319,-326.15617384650886 -170.97187663007116,-368.692746035352,-826.1208786154916 --554.0999828844929,-623.8828670418488,-143.9612951207123 -316.5675668523147,-472.38785010728486,-975.8601293987641 -37.87472852951373,211.51897871794404,925.7409880036193 -178.94160618649357,-57.65488124371632,146.80325179540773 -855.801259724054,656.7562912032924,-354.04253327238405 --525.4912726857256,-474.73277526785273,8.842079430425997 -488.09890245715565,6.438414365924132,-864.4072083437748 -447.1614008799618,611.9402573419077,-421.00426976056076 -328.2514785667008,-146.81619789121328,778.2387114548856 -690.4511163214797,50.863996619284535,383.011091627189 -766.699402044208,-8.565979843448986,-373.49851902235605 -507.33227581916253,-559.8674904306165,-222.93770398791594 -731.4544742135874,448.8446805386302,-192.37798950500155 --570.5109951832851,-288.0632183355269,-431.79170154513406 --647.8214241122921,486.66582713131334,-495.860226299657 --91.66505966447232,-228.2811063277819,964.1547572712616 --217.81551170355897,-840.0350344064905,-820.348494855832 -181.50744270612972,198.72710347653128,-162.4820190346901 --136.3126153759406,-892.1348343182576,33.09302077852453 -9.478950760703356,-700.901362886111,-792.3212277781448 --752.855018801019,-797.943507017483,219.41639107351966 --607.0346951941627,-497.1396956250731,-652.8557116971206 -915.6706088970061,709.2349263036708,-539.0103252969582 --344.86741215574796,-580.2143153900056,-16.24808107835247 --960.7789350514928,342.7360177935914,46.31629963528326 -797.2778566022066,-671.2146313431717,608.2184921222633 -583.9220289334314,-745.6376215662261,-202.8815517117448 --659.6947177109662,-490.5589990849022,-473.5076503389113 -112.47278805154542,-177.17813647906894,895.4656080126106 --747.2597161059897,947.3842697003977,-538.7227195714721 -545.7478727637063,-322.06014765435725,-713.8372091653722 -715.7783704924798,-382.27820152707363,317.7108084536844 -132.8873701732532,-56.48738121825136,-8.36105470292182 -464.4758281845752,-824.4541717531189,336.3613239158103 -791.6242027971573,-884.4236059602717,-718.6933215326665 -433.2638734040629,-125.4367035107648,-192.90275837262323 --726.0667309115283,13.540081435576212,-746.9093776072455 --46.75908737891916,527.2305979233133,-483.471284225673 --38.42766364054535,984.0319387936713,373.30084670807446 -682.7135426103971,-170.30478687890854,535.7218462517105 --918.9816541173564,-754.17763491551,-593.8588141598757 --196.09615076956084,691.4897566515262,-307.467898424139 -309.2423870309258,418.6285896069669,172.36470817668283 --285.5160636597276,154.10668342708846,-315.46881442050756 --832.2525228959759,985.6079563720289,-745.6350927349782 --855.3032323278853,757.0614984143117,-396.3306782142098 -300.5939481470152,-341.9885406755343,-217.09145841105772 --475.774055966407,-313.91198841397966,-178.59919882691372 -440.83213818468585,23.072388469583643,887.1304343139539 --916.239212322449,6.136645264056369,168.44957766343623 -840.3939721485478,-901.6829527571448,146.99916987043207 -707.2598570559142,-516.1445437615268,752.5846970478749 --961.9131814514163,464.90925826745934,866.226442337306 -314.39532328012433,-121.94151203910405,-910.2379670545639 -840.2276266452575,-59.40755461685046,-942.006511328104 -379.6421426575239,-36.3254928474837,-751.3093651151785 --571.4563813794808,-871.0186390883075,148.58707941714715 -244.0589585040184,11.484596710888695,634.2042660052298 -722.0176426160272,231.24879336625327,-974.4870405851389 -390.4593114954714,-164.00156615929689,131.11496645277407 -298.1612040377688,-299.52677134584644,834.1970103435885 --732.0502665004376,343.02361456207495,-991.2808400868391 -849.3022108103617,-774.991733523817,-810.2315397048508 --333.98473389551157,-252.86742792183884,-571.3998553542427 -170.24332185424942,-114.1718039160728,-931.6488219178252 --360.69587548939876,620.865827146341,379.4030697237372 -449.74170715976084,396.2338481670472,-378.0539572339334 --800.6721558464483,-455.06563193380805,663.5706003703185 -960.9415955661423,-12.305970516877323,-980.5992901539156 --719.910375731542,-355.83884936746847,157.1706971858996 --849.8127083893721,886.7145974197633,-269.83265343119854 -825.1684358496461,561.0436055140435,510.87454503116214 -213.43915956446403,253.56763410368922,276.00647043249637 -257.4427740511642,107.45646279672246,972.8280369657778 -464.5811348513921,553.8927767850423,744.9256301673483 --568.7204745483016,-832.3916818098785,-34.21112680280271 -28.16139123854623,658.3635598998353,-112.43284143532856 -141.70605108862537,54.141877026916745,-923.5944324852179 -230.4297931938279,656.0865715485045,-684.9989038483923 -188.6634678531916,187.22108889282867,-671.6300718872825 --753.072852538528,960.1038859529697,-212.56166069392486 --545.1565425529415,-657.35091109125,335.2034271664702 -218.89059465455762,287.10424597483507,-823.9879449770955 -787.069166996874,-221.46720638190345,-373.2611871392842 --75.27710550452161,-219.86786850474346,727.1540062782917 -858.5219503957842,-393.0935671007876,727.8716149199097 -563.0462590661343,861.6153446895237,-508.49937562822436 -153.91830024195815,-450.91083051911073,648.1889809687484 --989.3516188578715,129.6383257727923,-321.5931374561641 --354.6325858443595,289.812647729834,702.9688986279878 -218.39078278665238,706.345957293445,-470.8057762379401 -39.00370952996218,-98.92692186584793,-976.7102009938076 -113.62428628148018,323.04864829234975,183.82880883814005 -472.5597975668429,142.6790569061543,-866.4994902984862 --767.1089518305771,192.94915508790473,-450.04161605271963 --840.7097419304683,-140.79451310290642,108.64519616731081 --342.50802330078693,440.867404451556,287.5412162024893 --334.36327781665614,509.7450578171213,297.3900850660709 -274.89075743580406,106.85540157413607,-977.2206638228944 -393.01436695377834,-247.91641778168707,885.2194203173112 -635.9695421544106,175.38893906262433,-495.63603636146115 --592.5652134446668,-319.23032464490177,-46.8641128399629 --407.86897992210584,29.8589907849655,-669.2591489736282 -955.4256256509998,-784.1508900700122,863.8882793087441 -827.1560228053897,50.720963638995954,449.8205436721687 --127.90340405482436,260.06915508487646,-318.84812515776264 --397.68196042910927,156.45957233902732,-3.7406516320393166 -159.0727382999621,-426.67883742595404,-266.08433636600944 --832.2040787421814,-895.4472554555886,-493.0857406539675 --851.5062813389085,-792.4505827305186,625.8568107878741 --922.2526059666214,317.88558786948556,-454.884502369199 -743.0913614162528,-30.01543084500088,-388.84708134434857 -35.27787137886912,-236.08396190946235,128.60212933966045 --770.9342633473035,993.9810056251022,-148.88824460656497 --303.5387205852627,420.41969663252985,-272.20118700933506 -666.5486100575154,-91.45855127914945,439.11682653086973 --785.093567116227,692.2383711102236,471.4359735562198 --576.5664430760687,-709.4279805084267,-367.41530254875124 -952.1411720638087,-486.33685086588275,-87.74558210673342 --939.9595485653274,-205.54494086753493,142.6400308662055 -906.2492250159303,33.472089880128806,638.2146523553756 -94.25528513780114,-918.4299731289638,-369.9834496204519 -151.0990156622065,901.1879318622487,718.2607195024666 --543.2887716423047,-559.780339961673,-597.6540657721985 -844.9977926050062,705.3323062034412,549.7668645058975 --214.52977155154485,8.76140859753366,-71.33651040969437 --493.2037848812547,10.05609229753395,-939.006904294491 --736.3792530050816,773.1791923378928,503.3595340628465 --154.26318188182586,34.300724567754514,-260.00222808004514 -481.5597343213449,568.3743584641593,526.5703804063182 -445.2234496688991,-590.9913226144083,-324.06004151904244 --60.30913003265016,-338.4140171446887,509.88040031665787 --341.2929515000907,-723.5358264293257,-201.91909590339185 -959.8288655647607,-548.2371741328482,224.3173178864581 --134.05390032058745,-857.9508647013467,-24.24678800388108 -404.3286572966249,26.439951655637515,744.2121274931621 --422.1259666848347,-827.5016573920701,873.1312233160122 --243.607300943562,152.8111029072668,584.0062522603919 --351.37267224883885,432.32907635522224,-729.162300364344 --417.41250558898946,-710.5787277269601,622.4611168027157 --554.7015295464292,434.80711081042045,886.5967944913052 -55.544418137754064,80.05838452137527,-77.93286380437587 --348.2197132127145,-48.689938150165744,205.61506453351876 -971.9831443413186,875.5291186364484,724.3059165862435 -778.2610714097166,-64.30163341591413,314.8886543549297 -790.1334458724282,-214.09847001729383,923.5249566909376 --168.427875861634,202.16533078643124,419.6094265447439 -901.1840261518767,-510.7674518954679,492.26195647728446 -41.63117228816441,-462.88571875871787,553.2136795927811 -104.44456034769314,321.9476412993515,-354.19786284419797 --37.45209634478999,234.70850197613413,-190.17837146031206 --603.2549203045974,923.2809846306081,22.93508008523486 -467.840740575401,-177.90561288788376,-289.7364719485673 --185.67140306575004,-181.60671242870046,88.36023188390709 -86.93973996272621,-5.692368234256719,-730.4284301651238 --7.849042998937762,-661.792199158697,-747.7284274084697 -865.2914346823354,209.90002629540845,318.98011624916853 --196.41265933327247,817.9617838297283,275.860979159331 -538.3397390471748,-262.8750619445723,920.023761638251 -640.92258031663,707.8969260290874,-655.6114651484914 --458.0735842575609,-428.74680063284586,-458.1815535062576 -710.8163242085759,-936.2304095828158,-847.8000220384514 --452.1702587401926,-600.2540507011126,-536.2807722343032 -595.8863785066001,126.25318778409383,-988.458677414064 --141.35446859160947,-184.23014629928218,-772.1094611109129 -352.28357720291433,404.1943767589821,441.78643810419544 -456.941891117184,-999.8943461354064,907.8416076934443 -628.4175341093262,807.9633931785706,-968.7134093851317 -867.7175915714788,619.5770573762095,674.4382859173973 --813.425230556063,477.55605783719534,919.833379284182 -357.0946828363212,141.12280924921288,891.259355497994 --114.12575653112799,198.5871326209574,-47.32341301126769 -865.6924427205984,-847.8305464689855,2.2394016506963226 -373.9048827708766,583.8130768444737,166.03729488827275 -817.835488242908,883.9828937677435,-871.361553612833 --195.25892091725132,-953.0819565576911,-341.16668525111413 -73.73643594120426,821.5898610198976,693.1086449308057 --745.0005466560285,-813.9392505182086,178.53467751333415 -64.23594491756535,-467.2447171399523,798.9061691076704 -854.7328189231068,-194.77712331967473,780.6051142270405 --232.1022114740548,473.6336636594003,-48.11556490455166 --754.833686985634,855.868402474043,-91.80681324492684 -468.9740806448074,-265.6523711374157,-962.2382428475307 --798.9392826163282,-7.561041020151151,379.92871425272483 --330.5293468414419,390.97691835530077,397.27117886391216 -407.87181465566164,-14.956291958983229,829.772300243008 --21.606964038768865,-99.46961300672365,-601.2383619787461 --384.6898252873269,-915.3310149633933,267.07058723234036 --502.92851214581424,-391.6894910290698,541.6290433286424 --345.5576336770922,-515.6082159737157,-661.8845017325884 -549.7168043639117,-740.5874840199463,-92.49247949929293 -13.860232154388768,374.77982537142907,266.566964665991 -621.4413458903496,-910.4971321475236,-407.11855044120557 --439.7317624492405,-707.9661888157835,-421.64349228711376 --380.46937171419313,43.76892385495648,327.40895785251223 --237.7989727763719,438.9404626267624,-327.6693228408401 --419.43264537047935,82.37611171404865,-952.5672793884188 --840.4217527319993,-164.06091282694592,885.825422783513 -443.0235596868472,-823.7468609988845,692.6360255617474 -464.60154121636197,221.89305140530632,640.5859212183548 --191.78030451408574,-556.9978982922945,24.04677821751875 -97.68351118694773,76.65274401982424,130.14758296021046 -897.4098364783615,804.4912461924628,751.4340731178788 -602.8336218172542,886.8562145305707,-803.0107166411935 --469.753477108521,-9.888108690830222,693.0689862468105 -10.33142304546493,496.0694786831775,-722.0801895021675 --495.1723740468796,463.5521900753447,-670.5319822245519 --297.28813069014643,-470.2674843728571,-300.276611555043 -416.6480981559407,-264.305637714398,110.52664521588031 --800.1362458911807,610.0353864692556,-260.2227487037503 -297.0683180666849,450.77920332366534,-580.6781557765992 -769.3499699066999,232.44850321390595,-142.54971649703702 --635.329632843561,884.6018758024134,510.13640826325013 --583.9508745335022,-324.578450551551,619.3485161761464 -391.3553264306779,531.5685854314486,-117.59779557413515 -432.9525252843339,-227.01255427217257,-577.4741661236071 -265.3540696827199,952.0278511975885,-378.79805720934075 --78.06081557492075,348.00274213970715,83.01256424497569 -686.8555914180986,523.4854129390319,-883.4055922752859 -996.842467847548,504.8049074389344,727.8066325882264 -302.39542419069267,712.5702560935244,-775.2340501425812 --304.5243288813688,752.8418872089856,-596.6895774662155 --843.5158028399545,576.2378798904379,670.9723112865925 --674.6955636201988,708.6919655654308,373.5355911943393 -40.16536643316772,660.5003855627701,-161.50150136206844 --612.0120875532056,-430.29464677877274,10.32803658662965 -62.66158534635156,611.1616528824673,582.705447304669 -162.73311440914972,561.5709667309527,-616.4530834126581 --899.8709458134113,747.2676452694002,-848.8910124744609 --506.6231405120054,390.63789924876914,-181.10412474538168 -752.6279398310176,-404.040410675461,-976.2573066612814 --398.68871887851174,156.15009836966328,-248.12324919341336 -69.74551151751052,753.1962376700374,824.970108460737 --468.0518706917758,-75.71905346019855,98.28803048290229 -898.2249137764941,997.2346383287693,-529.1855023169467 -453.95974269163094,-243.9378755336097,-983.7836062275735 --981.4949551281953,-78.86798487548856,-23.330173991330753 --954.8606068531146,373.85483354860503,-411.9932228100938 -119.78620307189885,-398.1618536691625,-665.7313702613856 --185.65252280224945,-535.4532704189985,69.60195383833616 --602.3429394270402,16.81195328925412,-685.2429702622649 -341.9494189715699,507.8753688828481,-779.2115315001324 --64.39517592532161,-858.2565986902529,196.36489108400474 --471.1914041407092,55.24891367741566,34.92201876858235 -848.7086923876009,98.16644513744586,165.9969594366312 --196.69374847123947,898.1592063656335,554.3718188792193 --429.18941939431693,688.4191715524641,-135.20727962982005 -657.3342870671879,645.776136587004,-622.2596264742913 -402.28226276715395,-418.71406138693783,-405.0146600146636 --407.30384623883856,451.1364951198964,-540.3479164149278 --998.1883295078195,430.4737069652663,-657.6305123297494 --791.0352093843308,-524.9677588118798,-240.19895535459204 --48.18734505359862,-910.8599185747383,941.1466652547208 -432.1261068391161,-353.61186935132775,-362.6054854292054 --102.91490126308122,252.48964552606594,-707.2538668220645 --622.1403724700954,718.8691656671017,-487.4901522218548 --239.61000404964489,742.543701900234,326.295658799645 --316.5762413166233,367.3990914492415,-960.6335692371725 -471.2853200227305,-25.967918967521086,626.3642945689226 -909.2753040129367,851.5770989891366,818.5300869106816 -24.33991186777439,-279.7157717221239,-69.92935053865449 -379.79200662672156,767.9955537423734,-586.0273939997609 -836.386316923406,630.3604639397781,957.7120303564693 -760.5035465633744,-440.1253406161867,-788.0881773119046 --775.5178560168227,-417.55336284344776,228.3674479690785 -608.640652194345,798.5006139631294,247.50676873846555 --988.7373745038925,-627.366446962933,-800.5475922932641 --273.35104886197996,2.701987267491859,-913.2056428428783 --303.0440484086894,-641.6406507493548,294.14033251774777 --71.45526135132002,-9.364706132182391,-144.61642393307784 -912.0394209731339,-570.5297497568736,33.32851968774867 -472.03473673067197,113.68882626912523,858.0417714336022 --244.06328871743165,-72.64838845364397,-822.9553695705431 -217.99822210385696,-423.5760631037879,-679.3819209688622 -89.06258580901613,64.62052675982113,-848.2567175519049 -396.4309069889455,247.5443813017057,-621.9654345070055 --61.13027569191229,440.64583295711986,58.87148108255292 --209.0218476328596,-355.3230838381128,220.78773328810712 -878.2173966204812,343.48968095496684,-850.508192727369 --78.63005303573243,781.6482630212552,-811.0751483978263 -977.7514242750867,898.1387872908426,-843.4510385402483 -866.8266408991099,-273.73481948107553,689.418334151725 --163.2333245734569,-118.28977459496821,268.48618195508516 -548.9548385519668,-932.4216981035028,186.31199105426845 --626.534011805258,-308.1009642735942,-304.062667689567 --61.879319557692725,-331.72717624765323,-785.2777630986645 --708.7425229490971,-933.1240288778047,-59.50182934249142 -908.8953897059771,-768.6495527037669,892.5289860061641 -466.723029464187,274.99760586832645,290.55551064712586 -653.4552967925642,-786.1602712403572,9.508647131083421 -394.182276521517,173.64089014712727,665.5581420465892 --855.456581977297,381.40207899833194,68.05546076943551 --241.67827204011314,-319.4500355319383,241.66526554838583 -781.9907492885297,-7.648147797769411,649.4463281538403 --195.687236312065,-795.2110744136469,-876.9885270827228 --897.3312573526448,-239.69971608466017,-325.5244983283159 -435.8740472451391,485.6430031697316,-898.2920623325203 --557.75347422197,-451.47629968220065,95.22396828561887 --710.9695521860995,-732.1175611999993,887.5777784159161 -608.4058145955619,-638.6901958176594,-186.8643841890181 --288.7560014848689,582.0081481308146,20.425832956244108 --744.300526013066,477.98412631248766,-206.22404355016215 --474.1515047357059,-249.00275595855965,-4.4868727862073 --313.76896716598117,-516.1884548164844,-202.9959423920393 --961.6541785002036,544.9956921926278,-658.1102128648283 --912.1907727387255,307.3973858101583,547.8722576473444 -627.6582631856863,-12.981634678800106,-589.2636306200294 -474.45535449965337,399.4261543086743,-507.45853179365355 -806.815511725586,-791.257083834342,965.3764791826513 -720.4956219549292,375.79729095815037,877.4997765596656 -444.6223366474155,-619.0860059399081,-115.68772377437654 --856.9939513367293,-220.68515542376917,483.20603947441737 --227.11329813836528,-339.41164906373183,190.71144502062384 -744.4090579977901,-904.8336149077752,-229.05913060052922 --683.5185163694746,390.70850146373937,-788.5508791377302 -329.61551716048916,-427.6382584041853,-602.1663725255506 -872.7051156499708,-962.9508465080883,-124.44545622086207 --956.7460150764124,-32.813903791342,2.0947555888363922 --356.675057210506,-735.6764449499526,-247.2249245310494 -344.5258798651321,564.7916172889181,61.50120477628457 -179.6687888795111,-598.7672577506946,-425.33933354470105 --676.2087798952832,-501.4092999907773,-550.2264395489365 -38.89757278247521,125.37751158145875,889.8948416430089 --608.8587057969539,283.35142032299177,634.5185379750458 -120.48292756610499,-489.9926949978486,-474.8995399599995 --921.4938938580002,-389.1115469030366,489.20735800676016 --904.9644855857792,-561.4094349903387,412.46499706356394 -565.3031256457532,-89.36317987614314,396.14867695729777 --224.09566269021593,-680.173509951745,-203.70101295418692 -159.93564040628576,896.1065637057807,-862.4980958226454 -14.788187689921187,-342.1604435785513,16.623388553389077 --952.0491052469366,-373.9492905968374,639.73629505401 -107.88346770927501,-98.83501436776521,-428.9498565693208 --403.9149544172882,-233.79713281883107,671.1414199291207 -934.4264136165368,-122.68923729925098,-213.29432250447633 -693.1015516397256,-146.1893587273928,104.0363445913024 --538.1166708025112,487.00507155815035,63.97663654156372 -618.0691004806833,561.4654600573394,-569.9904634599429 -431.27110111552474,600.1088159027429,-307.78551843520984 --654.7817741954509,-994.7356888408236,-98.19269381370361 --295.1345369223168,109.81966765081779,-623.9178148224285 -719.3310953329503,-484.48956874378064,-547.1407898247 --38.571887031288156,-2.2979525114515127,-569.8295424298143 --456.2785465481685,-660.5895216895101,436.92035664633363 -540.1780625081637,-75.34300508143474,428.17404537003495 -471.870783874891,-723.4489446443829,932.3560496690734 -642.0638941928621,-591.033077608353,-627.6699285078596 --748.6777088408345,-723.2428749161633,496.32359805739225 --60.6914860967529,565.8683454797344,492.5097887004108 -209.22542701044313,372.73321315735916,-963.2885512417164 --376.4447063899561,275.64435851882035,-981.3100930275116 --934.0461126348132,703.7759649407665,368.0497233841436 --469.2605337593121,375.92568023741796,584.9133382785265 --386.41143377979745,-927.9252450016251,865.5582493754689 --309.64032340873905,-787.0364734305872,-16.2862572137052 -536.9355913282677,-556.7053707648818,-461.0198997332733 --514.5700264028337,983.3461056633564,-605.192532538915 -151.04043393224788,850.5292833139285,-706.2068622444415 -941.7083957354005,894.9544687912492,769.1439741165252 --570.8869573399954,268.11011202196664,521.7829459224804 -972.0558563928594,-639.1523558372592,532.0517990385929 --322.3976601457741,-648.7470688639953,-157.24611757229013 -587.6718242972327,-70.30039259189573,75.04620040609689 -990.3188204002424,-201.78140088514795,230.80150941847955 --269.51159676925624,-214.4287073425901,391.2815068908162 -875.773952189767,84.71790098464271,536.7998578975596 --821.5868823660724,-577.6839251361461,4.263281839064916 --959.9765527424504,-494.2900424748824,34.80257964993234 --970.0776034873986,-470.90742754791654,28.06163895173904 -146.29849596249142,851.503386110611,290.6912465012158 --170.5283949400125,860.7023542661357,569.7659667755886 --599.9821577745048,-738.3152773023605,351.6232714854659 -119.76633115396771,579.3472275855113,477.6101001573729 -250.42306771503013,972.7643432577843,67.17946022081742 --773.7884869965603,656.5471296319768,-496.29327530858205 -554.6042962878366,914.2141920001027,393.5910279286825 -192.0603218996023,-79.22764864991882,-271.18026800919347 --293.9904980563275,272.7454114191812,502.5462338754919 -357.03413896882876,-603.1797976128746,-12.025639713017654 -583.280144366126,-48.591843621887506,73.24655947098768 -542.2720963416443,322.5306125301829,-181.31015823521477 -790.8254223884378,-674.8658626730428,991.0328971806496 --762.2948430475255,-970.1000577915222,780.0378022975294 --510.09298326808783,459.3992548934418,622.0307498641387 -717.9727820642336,983.1884713283334,-411.92057992000184 -420.48668385451833,-769.2002834383436,-186.38141728630114 -695.9433866251807,-264.6839078817833,182.19076107122805 -7.54688744926807,291.90306222409004,945.7887787753898 --888.5289469971958,147.92303500325943,726.0575585005695 --37.234576503145036,-842.9456281168543,121.07870483354168 --335.85221835235916,-690.1164293241281,698.0690265669459 -43.199025982243256,866.5528247581333,612.0330092061381 -385.9435875473348,-989.9489932693762,-144.35308672350016 --605.0274366959354,821.5958220977354,-650.8320306472795 --427.87989668142905,33.67353546899835,-473.27276200384154 --580.2706454417577,198.19865020550492,-822.1409544899523 --883.6644825581506,-255.50940962785717,441.32890901572455 -109.61351654789587,-154.24706306644237,131.5031284491647 --269.0970306934528,872.2926708642258,-890.1902181784513 -346.78295805967036,782.565329655501,607.7694174705068 --631.9179303571066,-408.14730203942327,434.0958774142093 --831.4588816384689,623.723399665168,437.81388920958057 -459.21329847068523,-799.5172594648172,435.5210896324618 -359.6362504399399,661.8449816437012,-916.808087487061 --953.7786630644156,-253.98580024287855,-702.4234323016942 -116.76895514044372,834.6978030134978,-217.0405393319685 -689.9007545452082,-999.518250964267,-662.9707130816316 --939.1529206918287,-343.7056389698628,816.3791913930056 --806.0957528020244,212.81955348760084,-97.00812176111162 -876.9364247316248,-754.9617149258123,-575.9442989955421 --940.9160627770134,-132.12950073725244,-444.33420087069146 -739.8118677806417,209.88162639551,228.1814759514034 -63.821393762604885,-816.299325541598,-109.96263254928954 -999.0103794170332,670.4585816920296,786.9181083342319 -646.4527184929989,-793.9166131380346,-545.1034918704008 --993.7566972871807,-392.97975024377706,-782.7851953070149 --54.41330939683394,354.25497714780386,749.0105900761541 -498.43433018179644,877.1711915570104,-892.2034192124224 --975.6403291669171,322.6762276724253,-421.2951795555075 --492.9979677884537,-338.22582461241143,-460.4078842152717 -22.872812603174566,-119.703105551735,24.857102753312574 -345.42722300087235,-225.73898205770342,-497.3846257156864 --667.598926382509,-301.0517609347489,483.612950492344 -513.4098202229391,333.81077336842054,-531.9436493862509 -176.17249170939544,141.37932315369585,-31.467603780548984 -99.9579727677285,-16.41873475266391,130.9127321482165 -431.0119092422576,-780.7436111931205,499.2515042980474 --728.2276997448116,-866.7440031792506,952.1593724429351 -913.9835377408829,-879.1269101188719,-113.49311705007574 --627.5101234004505,-29.31020573116382,660.3544859991748 -901.2235494857805,268.5053069030748,-292.1886655763659 -206.65113128919666,-375.99738778309927,819.6472816641208 -740.8009262116739,116.46350055932203,-350.4021692392789 --413.22064883404335,-933.1640105898811,631.6417020505905 --99.23357392198409,-349.7341431994712,-57.77929000449217 -637.4759809093041,-750.7715845849576,715.3119764836547 -795.017670216708,893.4158300677764,-205.02401515474446 --565.7191919246562,-252.71836306660305,-334.17580753719346 --647.6921749942799,214.53334020297598,-46.75167898274219 -731.4019846480073,-935.7808390358834,287.7358551102527 -525.8977570231223,518.9731383766141,772.1479341910501 -458.06748565898806,855.6201232953927,-334.68680035821706 -6.418833503086148,-971.8406734342186,-986.0848253934175 --519.7467590969602,-798.3856057218295,-479.57726412849274 --645.9134109432052,-942.9599503227035,818.6082928120989 --983.5537372222169,472.16428867417085,-695.704226160967 -824.4592439992,785.5918791797715,307.8022927385148 -344.4682996012102,-989.3217160606229,969.7431322272041 -755.6652071516287,790.212451460184,318.4890741017439 --310.4261426909269,787.2972981809617,-416.9661436976153 -125.42308668440569,-800.5380553122352,843.9112602655002 --718.4590844575733,-550.2063885391855,116.2683162564299 -528.1860004259631,238.7026118725978,-535.7321743996877 --998.1139149450194,514.3011606148784,970.4146518221874 -619.8262406121808,-79.58676368676936,807.5345227982132 --180.30465376329994,49.86816848693502,-45.74046520863351 --104.75225466895006,550.3815385878115,53.537814538984094 --366.5657559495679,-483.6836646830434,-924.5053660651332 -166.39032376609202,-540.0771691979317,-703.7321559672339 -307.65992765535543,362.41851564309763,504.309784515332 -7.153792677182992,788.1092104077732,872.6855067964557 -614.7418795849787,271.18696401637453,-392.55809281762265 -965.8898432404424,-451.7276656161233,-594.6861560191378 --115.69177242683452,-886.3188585752231,956.9889293435815 -176.86711283284967,113.90418332835043,311.59255979943987 --5.952704445586733,-935.8729658109169,224.62257768079348 -432.3477539128612,-166.50187875189374,514.5911441423859 --545.9974013231588,-557.4468178676319,-677.1660246248521 --256.01048042167633,694.024070778167,655.8241242981287 --234.3515840729924,178.23747196047316,441.6326329498313 --517.5864507439541,-663.7178282105058,944.191986424622 -235.11462641923708,962.8314436673277,-324.4880257355418 -406.06339994826294,-554.7927269175245,-477.59965745217414 -23.80424253924798,-360.76374898385757,-664.756872318831 --474.23859602134803,-928.5032110682707,408.8472429549731 --15.766685828276763,-811.5138671909488,-656.6120137430175 --794.930923774712,225.1856165517529,-811.5792727750124 -508.56466607043217,-958.9781613592177,-501.2484240082158 -781.3333517838144,437.06263624449207,-854.0633341486246 -642.2522089703596,-13.929756919590432,693.5660543376584 -201.47954890078677,363.66606406571736,987.0031207914162 --535.3289081519637,247.8911495227767,-79.35721988520322 --921.0960941546172,-971.05871699427,-761.5428443642827 -298.1834810770963,134.3261758267845,106.85912232745477 --936.2864749434798,-61.394007279985885,849.2456356850571 --204.81626137870683,249.84493957691257,559.6373512462872 -567.8505582837752,38.560164790542785,715.9038908046728 --217.24381327250603,777.3864295695967,-519.5456672089094 --439.5671860188579,-893.7587516019978,591.1636730845657 --165.88952753458886,-541.7667721772019,-536.4194447668407 -802.7998824584663,667.8332009220737,107.06177071436673 -232.22160083144217,-51.34885889941802,-216.6669142423823 -830.953762436663,-748.7745929593958,-163.1064205675441 --310.87618402424937,-3.698559497703286,-84.73625090964993 -37.77906330216274,-720.1620455460118,26.28300302655407 --515.1623722255783,-631.3373020236174,-870.3315624276175 -525.3051175122819,-145.11615828688002,253.28736662351662 -455.18668660948674,358.63333062710694,-58.99856182063547 --224.20294209654037,-248.08018071867252,280.09759386011274 --10.411290116253213,698.2644959770212,749.4039686534243 --658.879243986963,-727.5326969085487,260.80185207199906 --397.54850387544116,-962.8585624698023,777.2853387259102 --546.1984655123836,858.5613033716181,434.8689017565073 -525.3069798229685,-597.0770084136791,-531.6111487663742 -42.53550764813144,-655.8002947002757,-389.13661463393544 --357.07504410439105,-680.7401334944718,-589.6343332096785 -577.1036840165132,-665.6082909054633,-943.085216312155 -258.70988525787675,951.9662387849,-337.57237075375724 --762.6885936074955,140.77465073506164,812.7084221912924 -568.1235596569577,245.03173682543206,-369.8870067848012 -83.76034655243984,-817.5103173914893,357.8908485613399 -450.19203779530176,930.0632458198377,-479.2052825098567 --963.0871619139547,91.21692885430116,413.5810087936288 -580.814951765976,-612.5221339503788,-476.4942619259526 -25.18185053459274,-338.79838005999625,721.02297317489 --52.4796925225595,599.1572882040059,161.23952096470748 -546.1802832342239,-334.6540269393523,662.8332438606224 --450.85536889795685,92.19761600658171,-571.9857736522515 --48.946956747613285,-363.64958098259365,-466.5931387255715 -933.9700360560751,-679.8517890265388,574.6516749147904 -968.3299189664299,-960.1970325198444,398.0548280841899 --494.1763888874258,-919.0243513433911,-194.22084208673834 -870.4356203417501,-976.4698112660046,175.77138385956346 -2.7929571906486217,746.768328742095,-831.9965709587486 -363.0520597733007,360.2193968665547,338.1600337245666 -884.668989870074,646.1750580137609,-916.0545475129879 --57.83429859097362,-204.09388759733304,-379.70555781839585 --97.32654969180544,-231.61163014804504,-135.3322002426694 -958.5237312172849,-822.7340505008385,844.4617396774597 --39.52657305794662,247.48449099908225,660.3659332353877 --279.07394170148893,-139.15618382406626,-180.96303944257204 --250.5379549284803,851.0586432937898,657.8597823860241 --782.0000202740478,-783.7532950458079,-144.26097029401762 --802.6852465343819,238.18619054223927,-712.6167854765322 -44.74652793360201,-985.5601059925644,-366.8073031747066 -354.3814473453108,-31.922119544303087,956.5389719979762 -748.2075921324215,-281.85844191369756,-909.0269170554508 -691.2526002300376,822.4686206293427,641.2547868380736 --744.1001181604703,995.8302688245756,-482.8315568944523 -448.40982561674014,816.0697526714432,-528.6257713385811 -816.5171093541321,-381.03684161026604,952.8264447681122 --437.4799592390508,906.8716495156702,-892.9106982146502 -418.54402333962594,64.2222676740073,-44.245845754538664 --553.01137148832,411.19157955298397,-618.3810171073858 -105.68359196953656,-493.5092739194984,911.2427595627121 --942.7376123286944,-600.5434397775268,-515.3787872251046 --171.86434846436714,-534.5395162598929,-17.301819462429535 -744.9310465170779,424.12684281834163,159.92396107022205 --821.9936440346407,387.9842167785512,-667.1714313781204 -572.734771923396,-499.8864829796936,-165.90254335819816 --299.0595953641441,717.6278293497137,-746.9110825731838 -131.28976476957723,-715.8767811138755,409.5916722643733 -810.1562555889623,-130.78469226549316,-23.815479470048217 -854.8456729655245,41.982777298714154,-24.803123900878177 -156.6582054086084,378.4594727259039,-786.2332498259373 -642.2210554830322,-128.98994509348154,-855.3029802050289 -572.3653383964263,-246.10005662745584,-799.2650098098921 -267.55807908650104,760.2627068672834,775.5070188279726 -915.3269496179464,735.410919533376,-995.7181613090496 --239.5176671732196,637.0851598110062,-267.4939880030515 -203.09701275941234,212.63389474906398,-269.9493919223539 -808.9478545625752,6.45669077223522,-70.43158812499837 -995.0274913237918,-12.999271854766675,-643.2034961428378 -26.13884572687607,628.0334710398602,553.7206537965628 -577.163530216942,416.04756799582356,-491.5643418666236 -724.1681716804628,786.8869307525301,-611.6946067629019 --739.0887268972122,951.2099371782242,736.6479273007358 -786.4722944198934,772.7527692487904,83.37364806745677 -292.80347333159943,90.72570426728339,-897.5873016193418 -491.0061707055454,10.664066671760565,295.4181495804596 -5.279609951070597,-16.37735535508807,-656.4217810444663 --442.5725697177021,-682.2946161120884,-608.6674087493152 -945.9547608406099,-693.7731084556032,-461.4591513895847 -181.1793154771699,220.3571524732838,-692.0517405123419 -587.4348515704246,570.40573582565,-525.3645915922178 --422.66739464907914,875.975730918994,651.3428919589562 -395.5940661250477,-835.533556978799,-163.4718381948486 -118.60374415365413,-625.1774240324462,-103.54683578355093 -202.05175497737991,-345.2466397692016,561.8896379009743 -680.8991632776108,-352.78106113185845,677.3143089849143 --792.84686779397,675.4581972453127,-694.4991366647669 --834.1456949805479,283.55080888202247,-56.12526848941138 -815.7812008256656,-273.6216078183015,-425.69547312474265 -1.4698122883967244,-88.10762846267744,-311.1439075656235 -387.4825973966572,519.1236678278167,705.9679380602734 -945.7132094206856,-466.687615734991,432.186964979923 --211.48352900850955,354.16394390221626,-48.03661930155931 -987.5462055358632,457.80427158149973,904.9826008686491 -669.9390989623714,805.8020223267422,628.8383944293498 --81.68173924817722,-496.42309330623124,-259.35964909895563 --959.5275347200991,47.98633492933436,10.115600540817354 -50.50092966097645,948.0624499441276,822.9080069096785 --676.574443339784,-262.23495688822163,-152.08764107347622 --278.93416429670447,596.9919272078262,48.075339735173884 -144.1996339432501,706.0271179758511,611.8563068307171 --735.5769543594006,427.82916816726856,-129.12774219592893 --410.702193874999,-899.9623581956273,-25.50087930909808 --289.1266385509373,-496.9739206471984,389.3434591939151 -538.970774631174,-510.4209619411504,-901.1051266413054 -697.5054011304701,-980.0805175913933,874.2249878429441 -255.23974796541188,-356.30672959735944,-507.0441808465276 --981.9886714710495,-529.0571659782456,-724.5433969657178 -224.33244144629134,-666.9088228123974,57.25967507323867 -180.23284468894167,-403.91660330617094,-929.8701019625626 --925.4922387716078,-947.3053356121648,478.2493342730925 --363.98059037140376,592.6003719353273,-136.5343523143017 --94.00379834007231,25.765205019147515,426.0629127502077 --452.9942683405859,-756.8253009329462,112.1146703829229 --346.0447535145215,-115.01737266392524,293.89341667461076 --11.748517717458753,240.5576342016857,88.40000422725575 -479.5927438721983,411.87323542324,68.37978361723845 -357.80604171941377,747.1192045452256,-135.45742442366281 --174.47385450241268,528.4912417047603,165.10767408398806 --857.9864395548229,784.2240313821626,-938.4337955247197 -496.7927124194862,517.5882854086258,906.2221705638608 --891.7311831953584,193.713721568982,-144.3188587458941 --338.7340902809159,-819.3628794018539,125.30823934261844 --41.918548650772664,-790.8910836979514,224.97901419416667 -475.9062405058769,534.5566021072964,810.7463765248549 --181.05851622244563,906.145537244274,730.8588101653722 --406.9968579521219,-681.433925301083,-129.2212077439732 --196.20258408806683,151.43861066240856,166.77246465549592 -499.9739687599506,19.779896411220307,-790.3547181184689 -716.5826711062123,-380.4708336296259,942.5949206131841 --764.2797826404596,916.5023444650064,-817.9763862349661 --537.927724105881,-906.8401158269169,410.22629327798995 -700.5974731435836,-131.85783636803922,857.0441500848594 -180.59814351119917,260.0142708930464,690.8384034015398 --406.39958989632214,-291.46855734474843,811.9038383892887 -801.9269920775275,952.9655524017417,803.6766328833423 --745.2559279332783,647.4485722739746,-180.32304378081187 -981.6027118918757,-55.43807134239785,107.67216500444124 -59.549830513597044,-356.52594028344447,-849.9558222141636 -791.302460803837,605.3516250525736,-720.9464388806614 -553.5365427001457,251.69333210122,-181.71242416475536 --491.95770180887456,719.4575670044649,400.37651858810614 -95.47981893827364,219.13706779692825,-817.8676358356381 --52.16047817761614,-612.599414428596,-583.2326419823493 -322.6079245737335,822.5123036685761,-192.4867790433069 --584.5014539756193,297.49387447330855,742.3740927006354 -496.63760224498174,737.5144610731743,73.10934202159865 -503.75248873838177,-719.8708812821271,-303.45076927361697 --220.90167103695512,22.591492492069165,858.1527205136474 -748.5931204443486,-730.949015421631,-654.4206962350736 --284.7189008221774,-418.51226821865214,229.5419063125246 -805.5520955290897,924.5830833451737,307.2059050704529 -676.3184028021733,50.40440046159415,-583.3461062799206 -49.376824186954764,110.16520287530216,484.91512842711313 --560.2340205853018,-263.3792358265365,-271.94506157086744 -918.8791914823298,-112.11007934656209,510.18793459629296 -501.62276274887813,-468.91163039351727,143.73937874346416 -788.6057866372962,-49.60456108610117,890.2350146850922 --571.0835413516768,-851.6817884519385,782.9077462894986 -695.3623959244333,985.1797518676894,358.7869762248522 -873.3758533342991,653.8980501682217,688.8526662401737 -138.28314090853655,-235.27080416657827,869.1161450865636 --135.76564876821112,77.63873449933817,-107.77138574962453 -129.63662792039418,-58.98984201534563,-904.0648828410483 -764.0963720153973,-111.21236216846046,177.88729701469742 --721.624394484026,-993.2243040347217,-509.4198127127141 -409.17206426670054,-801.6109397742428,817.7748807729356 --569.9548612876308,-590.8127714164484,-636.984076757009 --972.0365740572705,543.6109369564692,750.0690624905171 -228.32540523239777,-623.6000366402754,-429.4440061182405 --48.14660527007345,908.6919032466017,-505.2972563645144 -463.2918078397761,-121.10355341415936,-404.30530327995643 --88.16812595577255,-857.5865649175349,597.374741860725 --513.3961440340657,450.8242463859408,-863.3032571036106 -910.1971123313722,-613.9700291886028,765.4841524141609 -618.946419230869,935.719848162832,-44.21867810850074 -454.79458769190296,-258.57868592443185,-631.2635239606124 --113.84813413310235,-668.5019692230902,964.0892455727678 --807.5070177185672,178.42344690524078,252.9277105081119 -76.15908574810851,324.37177142366704,-767.6384499762181 -110.0370484105822,-425.574857745277,880.3521266021132 -524.1433068794515,945.0289643194853,-924.887860519621 --429.7336496385826,-609.154826723302,-977.690825376339 --515.3485395073571,357.5519670408578,-537.822155730863 -18.006890965236494,775.6362299299972,387.51584069815044 --210.74186018793603,-255.06212217578343,-88.52837198303052 --645.9171178801872,268.0015348319762,-271.694361790789 -704.7306985240873,513.1053201156326,221.02632818432016 --271.5955547009679,-580.1363366530312,552.3037282112457 --27.181802017826953,-550.499923645285,-609.6507699199876 --669.1981909972819,554.3223924111899,-542.0256293993766 -53.2845270503949,-96.90727805388713,159.22179845656774 -754.3098007423885,735.4947801634612,-97.84785635028072 --969.2674985305534,-147.1123885713937,212.3870748482807 -115.52951819612349,302.67221160041095,-691.8485350538331 -293.0701975614652,-634.6967625124555,501.04796139349787 --321.82477347464,419.79086676290717,-904.2688021877858 --184.27994881817324,410.0690445266655,-546.2589673370117 -590.5740895944452,261.559466209864,175.1235442995967 --292.9022915913257,-35.097059237764825,194.69860195570618 --55.075772170219125,396.62664788112033,-132.60613378608093 --595.4536365159393,-572.1324343979055,-988.3924623141178 --398.08456888265505,497.83528095703923,588.3254176752191 --595.0649158085,918.0879937428156,4.805586960253436 -833.9574980370053,413.5305637232623,444.86684604482616 --829.9127573878577,-560.0177462061387,-982.3703334110547 -432.255280953475,-311.1234231429801,573.3050321526937 --322.1275601259474,638.6675045977222,-738.6034925033739 --653.2536864849836,-318.246920832127,-183.02522223545338 --302.5943783140432,527.2940650464398,-806.0972147465706 --297.56596072302386,674.4799990309186,-866.405845475656 -884.6870153427149,972.6336845440258,-822.8636523498399 --417.454955488526,-255.1986679292877,552.7827373054522 -191.8536242334676,288.73140098513477,515.019645637012 --764.0420011259486,666.4189138205247,411.239608360288 -154.6834503927405,779.4706695661134,400.6127077676142 --596.6000747379492,-140.50923784866654,-11.914266128533427 --889.5647464991887,909.2750267201116,-742.845478406243 -394.92253445345364,12.462072181760277,-948.7355002311548 -849.4949517287234,703.6736176378663,48.51585580767096 --542.1153277211095,-756.7542186398115,-273.2150411357468 --489.143437907819,13.382402012597481,932.8185922468579 -149.90698645928273,779.8621117801958,301.7576749915545 --49.50694682559913,709.2151254667424,-57.26377965400502 -737.256341020722,-416.8464608484694,-742.3738524740238 -710.6289287258767,174.83032758533363,778.1847964979202 -875.6544139847665,-892.7432192571016,1.9386037177366688 --250.07090185094148,251.71679414023424,587.1823944046471 --438.8195680512621,113.59676874634329,417.4571598097991 --731.137834328532,628.1338119025338,212.21919970594627 -899.0748742273036,-320.94216173861344,-783.7081153256026 -13.00240207385059,-828.3784565811222,939.0530466480136 --922.630083485617,507.00780221461605,50.20479628448811 --262.75869500342264,-868.3156709826907,244.3338483472155 -170.44065878191054,-438.2334538648005,820.4434028206242 --391.77998531432627,-100.54917881578774,87.52491183731127 --799.5362436474278,864.3234384272646,-250.92769509791776 --838.4415722513128,-225.41765264934008,200.4050941851615 -27.30534364265918,389.08394807454806,-889.0321158641788 --430.9187794558877,638.4611536802045,-840.2126244172782 -710.9719093919152,-816.2078158457875,668.9084297833924 --278.42319784254664,224.4181265144316,-694.2257687040037 --867.6625565496383,-568.1235919597298,-744.2923641826089 --375.18820464073644,28.766493022040322,177.51892713001894 -579.7362147594858,312.4797864967172,217.51665025910597 --176.43594502845076,-52.383130079722605,-170.95834121963787 -684.3320601227663,-539.9990949032003,-988.5581369160708 -302.63979445247855,-595.0756327223372,780.2302726196187 -718.092659413312,-846.5452561435882,-787.2231891718453 --9.656815506667385,218.4453255387093,-450.18332503551846 -433.5954333987413,189.83204183774296,-350.3517805028906 --949.2570239153688,500.3005625970354,-570.4926683498345 -668.9474869252567,-159.4194798914897,154.1548852635308 -745.8974608180038,727.2460018399067,-256.96084951285343 --582.2222145703138,550.2921554571894,-133.83959279573764 --615.9160128819918,808.8506846343005,-603.7916115178252 --948.3856636175378,-959.4400524651601,244.6307129085285 -323.3501214350606,-377.91658988603217,-359.97802150587324 --321.01216988011447,360.31709351775726,-883.7324179463428 -858.2327053826514,-554.9579116451071,999.3464104841844 --656.954612425626,543.0929146247549,-553.17491014075 --838.3063967134921,749.8666487012977,717.5025183817838 --192.85921510079731,404.7922850808536,114.13186536783428 -705.9122273474975,-369.88806136269113,47.34479999797031 --29.255257590899078,-292.1883474862825,782.9101291127445 --668.244150674929,-700.9827209586076,153.81907064550273 -314.98845996988393,-610.7614913508696,-218.56511549075174 -893.1276859574875,-506.765154618652,336.7214042347882 -480.29878739518153,-103.74260106968097,875.051973519166 -473.3134704375809,-84.15084027820433,138.67040355218796 -385.22688685020125,184.38036085843646,757.3951676521517 --286.2226754391977,-400.2285198883901,-572.3222210094714 --924.4340638708097,-913.9720712398894,740.1103862185655 -356.7862928118145,321.06483087297215,229.28563786977202 -698.4382893882098,-39.46614866874506,740.8216571166006 --281.1099476355216,853.415008678181,397.31396016248027 --485.64572795114543,128.16984337725034,66.06112297651111 --724.2023565393321,182.48581150122823,-370.4287525660841 --895.3024663807952,897.3123154131297,282.9807381285757 -753.837863741694,352.11201002650637,-286.03261571977407 -25.376144657622945,351.4935206943542,920.5046504028751 --492.6610817566071,749.9541172482354,848.1556105885388 -340.83102931791313,862.5332548026756,-204.2428250452631 -906.0323520808854,405.56575433194985,-915.9884651623762 -813.7456636381055,-31.054381933614877,-79.34603044433425 -132.93321195926865,-701.2309064575442,-61.66790286520279 -662.2544334354914,-969.0350817249694,-454.1656793512574 --995.0908271123116,-168.57738170030336,456.63102098746936 -597.5436582292571,890.3795222540132,217.00922594157305 --490.74626669420906,848.2958982733978,550.6315077607521 -148.85696600628899,391.28043143787204,848.6327100148583 -424.7880569458432,-263.25098483053205,426.05640457819345 --919.4436745292243,-227.16887633883755,-187.3539363088414 --666.3235311583306,-953.8290388964597,-733.2375267245143 -309.2429915941102,604.577632727375,976.4069854539484 --307.27299378301143,198.7584445222035,874.2899336302439 --665.9164373236947,435.29117268548544,509.9574662983264 --822.0489282613232,722.49877036613,626.2100942216878 --933.1939868451311,-817.831170239897,-901.7462122162954 --330.5129364012755,18.577981359852288,64.69545590925759 --464.6664804611147,823.1937731205483,-263.47442025617363 --908.899688069295,-399.5457769172273,62.2188450883109 --183.5563548235359,-452.3149618014817,-737.3535004713651 -638.3290001924595,992.2904842483838,-340.9157329522359 --236.7579116467922,236.0750493539142,436.8829494710826 --215.94093039281745,809.8590339636305,120.00797845783677 --99.21984718813803,293.3455063198103,905.6076964983463 -589.104588843411,-919.9737389297513,-335.3801785200807 --58.910630097554645,-370.9648555817895,400.375121660913 -652.538299725162,462.6901903705432,978.6665736565506 --454.90470421394184,749.9789900488429,533.2453303489724 --275.64248488370777,468.24908731393725,-791.8480871635061 -578.6669646811047,64.66120517420518,-415.41965458149366 -311.55460356836033,283.239997428818,-581.0275545608006 --939.2051703769478,-132.7548261966523,139.0237386888425 -753.2105567411968,856.4335912951888,57.61043631353277 -507.60696753708976,-121.39345534400616,492.1643131457861 --590.3969501216661,-257.8705303929372,268.45599762722964 --963.6840687858423,444.92262067790807,671.0710025363335 --201.71667781209715,-104.11516564567137,702.564424433062 -551.3092706520667,-423.70102193325,-352.04778687692203 -357.75646478119324,126.39618489632244,-675.5408578070062 --380.1401815416672,799.9665537573082,376.3488734445268 -971.948635371039,534.0250599615388,883.9488642871804 --567.6228522590492,542.9697496338515,-959.5649597044052 -341.5200434230678,-61.435443759517284,-306.4798561598627 -724.8087045861782,708.5353853150614,-955.3965902027128 -219.01024489886208,-264.3355513580872,-168.67799699910165 -664.081478437552,-380.3204569446434,886.0976212752403 --640.7323472557184,325.44484673635543,344.2101340275294 --495.6096771441636,-350.49878206559606,669.5969851598809 -523.610509909905,-341.8082393704809,67.91309386986768 --876.6394074938091,-582.5082352027415,-28.358882279201794 --828.0525294415768,686.664709783875,436.01242021529583 -887.2673412969896,386.9338119280544,880.8027445243711 -109.02511138192995,200.43722212393868,953.9421092525217 -284.2582937285208,-938.4268622785069,447.60555326104645 -810.9373842748314,591.1604995886532,167.66654525084527 -342.6070261870327,980.3835785033434,-818.6758229813233 -334.48965726647907,-433.2046108588123,280.18079317234015 -215.24715176787754,-693.0863357836758,-586.5067085195217 -243.25915608642708,-743.5401053924518,-469.63824973935425 -670.4910954760048,-345.8169879967228,-23.879687460674177 -882.2806702916805,-545.7018223261075,-220.74796528397917 -212.91555108709122,510.67785900794433,803.3067734254103 -830.9459751470304,553.2801487452459,-543.3383268133791 --950.3813399148684,-232.4521392887524,-716.9022980243533 -420.77529487659626,322.26117365143364,-912.0567167570903 -673.1875582619023,-502.51346741763547,-135.54584901791554 -335.8674709114848,-141.16242629549333,-117.42439440011321 --868.7440093285193,-197.1129014799924,529.6957864399669 -830.3526743731954,-173.00572587325644,-152.82834624184227 -405.25421264730426,885.5440022105531,-465.8781195212796 --119.71158692412632,591.9464871046023,219.38713874807695 --778.8273120720905,255.4654711245314,-626.5074308053462 -20.431868156808264,58.20653532087704,752.4067244499697 --75.01145197512369,-441.1151555282115,-538.0673035679368 -748.5037533686723,-657.9782911635432,-148.2628782337125 --625.653770146106,546.6080802287506,-51.25472005076199 --297.71261888637594,-277.8007187470664,704.4284134459588 -107.54790858887623,435.7357022625272,794.0770325013691 -803.483352081284,-342.98189132427365,904.9025262927705 --950.2482359707891,-246.32887796766863,791.5977150176832 --450.7262403660342,-453.8370993573633,-394.75542983622256 -224.62676969384438,-123.33444877129239,453.46967270668506 -789.8212851293315,348.3987498857214,-591.066559604849 -865.3638047210043,-471.014253305043,-700.2114093436837 --820.0654422780782,126.76748133233127,-772.4750750386963 --722.4482317747385,-399.9390388090068,-436.69398063107235 -208.4790206642847,633.4905589453631,522.6993124057849 --475.0310905670465,-509.37900402804013,931.5830602139351 --983.5275168160797,759.4410661204315,-600.54296175519 -894.5686461795358,-315.3854303449606,-119.2964522134954 -414.24122788876184,175.33810294652062,-364.12134058635434 -107.66183173564696,461.41376872577234,-915.3301081950158 --977.6013894885917,-83.86612185421734,-736.3267643929717 -328.6885829294288,-571.8950875451317,-134.2977864086581 --604.6581262514621,96.96717149824894,-767.8930812308622 --953.7862944250395,-897.7367237866056,908.5168830306197 --715.4275627781283,416.95650627367036,-864.1475915543475 --783.6792955296357,17.752502818669313,-70.25813969131264 -903.1606188797391,889.6709060414746,559.2172850849302 -204.20366025469957,-90.07936521397801,-287.6429313431579 -894.1750939511107,205.81762284937122,158.14505537198897 --536.1977564621702,-906.6043642297739,890.3771595190888 --372.5294823106922,-114.82195335108258,-770.7201128285863 -673.8486598185839,-944.7363342881388,667.981524198193 --719.4299744240664,773.1282252623041,459.5452746723147 --670.6594749853898,131.63598571893613,-374.68737128956104 --643.5338021768331,718.3643988222168,-192.95446698554122 --202.91257126923506,-660.22665038676,-233.8686478284426 -743.2336926577004,-273.74257902072816,903.2071249995761 -892.6177984167748,-710.202681385308,-645.3774929547103 -725.3481406637784,-214.47816215056162,-991.2520354339813 --452.25636058925795,195.25798639111986,598.5319319199361 --733.2227658134809,-778.9172711665293,844.1853071446633 -502.2967356451652,179.55920155615695,538.3735799918561 --142.2912773867231,516.9114946182531,-256.39401745092846 --511.81085501479527,458.0268425859372,-160.65541568546337 -962.7542086523897,-301.029635383798,843.4548410621319 -865.9250971341589,-516.2941058705078,596.4423631760267 --133.85098971086973,835.0494544606961,-99.75145472952238 -488.6074346747323,-66.06518167240426,-544.3984885742876 --601.2997421106274,-149.13761148730885,510.9893140284298 -210.14297036153357,377.2585798010866,-435.3472985361151 --37.12930808478893,-911.209470061346,635.0648319162412 -979.7843244797493,-186.2418747506582,-978.0726937369133 --660.4147208981053,305.0537555008377,224.1586364077184 -575.729439171088,-492.2319780778637,527.2638310942682 -375.9680430473395,-354.3710045723134,90.97629611392404 --705.4523830033465,-94.8709931288347,762.3946791112819 --157.61724034921838,679.1334129508439,180.50673051938884 --616.2465737952864,162.21248939579277,11.966658314126903 --202.71732960723193,-760.7391209678593,-166.5826723055403 --854.4752475207458,-802.4618972024975,-168.166934134568 --389.23703606307254,851.0886517244469,-248.58838923945893 -515.7162441442003,60.49505273248542,408.1713372846709 --479.7680339692016,883.8099456766581,60.1769938288478 -662.6481425704992,-269.908613047773,-799.577301898951 -347.4232954416975,-984.480703325151,-49.414046868983405 --614.3961946670815,254.75100887072426,958.8397462757043 --71.19418735870806,634.9965130513333,15.568373902242115 --8.319937791951816,860.8469863575556,779.931737493363 -571.6009303759488,-407.4884933664317,90.01683144788103 --552.20553338863,-112.1666039069205,-31.57386848041881 -663.2800803386617,792.0567306499861,-170.75987520704427 --964.5911098535256,723.5476795787092,-651.4426429972787 -243.76392778078707,-950.0581991317376,-200.98704947887143 -971.9206042306996,-798.6127977923938,-152.61369600071544 --385.70009962009567,810.1762467765286,738.6802158147104 --524.6024793875424,-837.6244258991377,254.27678812223508 --327.2625762325805,344.1687812121261,-935.760487864371 --733.2015296450211,372.74446554528663,-575.2586893950045 -715.1753515248031,-882.8182245797291,-569.0360344288508 -997.1204969701373,-133.84779482641477,405.9313270892869 --634.6739022859726,219.73746997107537,452.212136738837 --371.0467282669789,657.7942239517556,206.8351569445665 --221.75398076993952,115.28478668631715,153.52169487184847 --668.9294146122679,-194.53526026606767,-313.1388239610138 --198.19455484174784,522.2211769705159,-34.923185066654696 -880.6323064785286,-412.6471732831276,-168.592843430142 -573.9136209580829,92.04918664150046,94.05629284889551 --893.319673989633,-202.80067456308836,-458.532535156535 -998.6702456622306,-383.2898587353794,768.993069587727 -352.46747008095485,-318.1671816158191,87.06875674824732 -681.0717598983874,766.7365960618238,-679.2122499877096 --320.8537175836608,-329.5536395728567,-915.9104078481106 -196.475519703793,709.6401059843761,-236.85122434896448 -480.07188996835407,255.40082720147984,-248.7025290139984 --717.8804010154058,418.6477055519347,709.130337882481 -371.70898480298365,-964.2430319303638,-567.5342112180175 --861.0400302329361,140.7721991524536,512.9553576808248 --778.8416258626811,676.6756411867705,111.01795679096631 -379.93802428344975,942.8036972172924,-832.6380235046054 -802.4480459555784,-747.7946080251813,-214.0823867266355 -702.8773926622287,812.5084734757363,12.743347090290627 -188.2092765508503,416.2946691971142,665.5173369054285 --756.9776609246677,620.1386164584553,-37.447698976766446 --98.75314978366202,-152.2004960060035,18.423170492085205 -890.101106789207,96.4075455843033,906.3550765262785 --639.4197387687188,448.2719576652662,624.4790772174945 -358.2576626697239,213.8445604530807,129.62556217236443 -721.860965157392,643.293194329,-755.422557638801 -697.1753140617564,-171.86276111911502,-492.6063400083784 -739.5371360278518,-135.95040073251675,616.7293803536334 --473.192776088311,-992.1413571555644,-9.08161419411124 --799.5434867142314,508.7519110498192,-447.8497278611793 --112.70870679304255,-825.9328698168915,-426.6815031054947 -562.9804865171438,-696.8241761953611,294.31912225391466 -834.8517056090022,359.6735195154406,622.0433785844536 --782.0567413921684,-498.5363479958911,789.0777044811821 -430.2112272361785,279.10765275462245,327.53347224339996 --171.5988913907131,-910.8867367646935,568.8830841414581 -357.4264724307077,-54.391071774550596,799.5192307365148 --327.6806700298023,-411.35651153752815,745.5926501588856 -593.975309517971,29.95962129668942,-738.5305210843001 --569.8570570698951,312.4559808176132,-229.91752431917666 -672.9463833319423,899.9100186644082,611.2738505498364 --244.9091540088857,577.3728584628482,-297.1166530586331 --665.7998244687321,-933.2135902682852,-228.56657447795988 -807.1186073945637,-522.026824488647,-586.973670140432 -939.6415704820806,-949.9917742988158,571.5643007875087 --357.2600885182593,-925.0240862606813,835.6050804191673 --720.7153395808327,103.5585674513909,-451.89158514090445 --869.614395630618,-900.1550286732418,-768.8866023273224 --857.26597222124,521.1162310398458,-28.867595433141673 --314.2158173020406,-163.26217973598568,857.8934711452466 -821.5036254762945,431.3529602451538,769.3647548433755 --360.70394482475047,-237.78134798343433,227.42436370845599 -247.25189459452827,-36.60032397531813,-198.6843031240935 -972.3606232173902,642.2472522354487,-130.03960422390958 -454.58495447913697,-460.8766134950811,-799.6613475253403 --295.1379488945187,-194.05439975321156,-966.9257508786584 -629.5840032717922,-281.61319522163694,160.83633156029418 --852.073625458088,-650.006342498832,779.3874506551199 -217.37505576560147,900.5681003409711,997.5000687826339 --256.27976933381126,-402.3938718334508,716.7121103181935 -997.2228540749084,259.2824684649147,590.2814450230446 -563.4917176305489,-289.320583560906,148.5407605141745 -666.1138825284272,376.2277525221109,-957.6723720359234 --326.58866220493303,-711.0486068107894,-534.0555758439218 -810.9789549826514,-926.2134221784637,-560.3985760761525 --380.86129552353714,233.7681439327896,68.20338017173094 --563.4610342932278,-671.5178655536911,-526.4039308077624 -5.059253403311118,-457.6444285775931,895.2050032154443 --72.26955714230485,-882.4079669107259,458.5328116732667 --342.3094235820207,306.9778641164951,-440.811258953536 -141.4874834666398,544.3050096149293,856.017483549108 --477.74571113384593,-330.28609800203765,-71.46715942812068 -854.3496754719777,802.7737136213143,-820.2434397987239 --736.1403484923783,-8.981645338723524,-786.761454389153 --308.83825330260504,-703.2292435650447,272.0807102637716 -898.9908634783235,993.4675405887629,-249.51773500617037 -198.02527422922458,712.5353070481626,-765.075854407232 -379.1288221039299,-182.31267654986345,-587.7076794396719 --194.49276250511605,-848.0794260701663,390.81429717861147 --494.51466250309386,-377.18870991024403,-757.8374035170746 -729.3182277797835,-13.111441434522817,144.2937555728006 -138.86536618970922,-179.0137709173165,-614.940169123721 -490.2654969967998,-745.8874692846514,-792.252419442379 -420.2900751930067,-582.3259590960324,-386.4544972943354 --49.5450659965195,-101.29736654090755,417.15825012999835 -246.86358688672203,288.7923245637314,428.1086613109146 --414.7745451530693,-355.33337639905267,-124.00450420889172 --385.07565393294783,969.8757379417268,628.1038528428594 --670.6906234879409,-988.811688236261,-914.4334635054643 --511.87309791414947,-771.4174283262869,66.67622978514419 -715.9904454547172,473.5004418264548,-568.7818738356192 --201.40148794842833,15.78841906255525,620.4116990066711 -678.2432062123296,819.4366238155519,18.49050100575039 -388.549492871726,-776.3992575321257,130.5779199079641 --502.61638105772977,-136.56622994677775,268.1010166134388 --486.02812429243784,-895.6298844064778,-979.532287182485 --955.6809289109569,-983.3005249724607,-779.2898868842491 --521.0225708597402,-557.5569716354016,973.5931883597934 --387.9877895821136,-745.1584332812017,91.12508833551601 -715.9149107950166,356.12075357535036,-407.8358217290994 -123.2323195829099,429.7119484008183,456.2089847354846 -333.07691059537774,741.620849551236,740.2109166882087 -157.8731188140066,-140.2872617775754,283.1405911301997 -636.4240027409262,-988.6957903176306,983.9940180297021 --634.2124553416015,-59.5020286800476,744.0594696857333 --549.9192019116012,-46.409552199233644,-734.8356396376416 --209.84734922361486,-645.729090413995,-272.74450245768605 --253.07156641455595,986.3415791966654,989.6260586075446 --770.4274426787752,451.9375586566946,-896.5090406617977 --939.6159693256227,-789.3322115100714,930.9713140158681 -881.7270957893948,-612.1443594386391,-676.655328892577 --518.929826968106,31.093988150284304,139.40926407081975 --556.8131391211052,513.2455761798903,-380.89366119469844 -844.2626510588207,313.44541291346127,-127.29761139277662 -579.8240034056907,635.8292520933296,-419.0367887821127 --320.57091232783125,871.9103074572067,-670.5179232734562 --915.6991660741317,-91.88935478090161,602.4198004872578 -543.3362126214915,839.061257825665,66.40132873808057 --799.8706568669334,177.37794867203206,556.7912287064232 --813.3437594603472,-654.6851978048205,-975.4186776886582 -187.30515889362073,773.4687838918089,341.3266320041989 -964.080175181964,-873.9326950004769,806.0021703029925 -628.1365747733614,-371.51695900099014,947.0531036745035 --424.12450365716995,778.6094476564369,761.4971541483787 -515.3152332059449,126.94094762570376,-759.9945007662238 -63.943468992996486,-286.4074886901309,584.4340663107034 -516.2584129936897,821.2250147452105,-970.3396751365842 -618.2064336460921,876.9241062493377,578.6008982163003 --739.6110802592666,-837.4417903182245,-958.3095203845984 -257.4904516561421,259.3453037197746,973.8274284364245 --203.91365179180855,-336.18743020500654,248.84985436878492 -651.2173450151879,873.5478990460037,606.2483323580773 --146.65203876839053,269.8284706241284,712.598653432234 --18.780623376521135,-566.6267125892145,-660.5531205042541 --999.6845108438865,436.4759899625685,-777.805582308019 --512.3218006081191,-404.2473369544133,120.75972027353669 --204.0854454084615,349.3479840463235,-888.7226813425946 --752.1216114711211,-1.576992933466613,-326.0704243063403 --408.3732744972806,-865.9438419249545,791.438349496003 -383.63717225010146,-756.7636863607013,-869.9080845257188 -949.745066862486,362.3451008790098,-165.08785781251697 -403.46208151156975,512.6635729603181,559.9244047775587 --44.245388693884706,-140.23448375030398,-977.9438314621993 -853.1142302836761,206.6157567778862,-593.6921256200637 -839.2068388428734,829.8638035405927,978.3683287321919 -748.1131262779577,995.5687756401294,-510.6276237534548 -684.4991703984681,646.056617591529,-538.1192815585325 --803.1249019980185,958.8410273551992,-407.95089695877925 -741.7835809356122,-991.7456906507922,-957.9503855607956 --68.25738260726325,-522.5706321298728,379.68256687192866 -131.12865113590874,-845.0284050990172,-674.7434073685658 --223.90145988317147,-628.7918720891337,584.4446944878571 --167.85952889343992,-813.1362663150014,-31.314195455750337 --818.3236378771717,-742.1253891603656,-520.7803359435894 -719.0554104949795,849.2250646659438,652.5154586641381 --331.8455651643055,-455.1071177823367,98.31138158047838 -443.70632106622475,986.7455763203498,-736.8585762421476 --901.4160019523911,388.71177799054203,664.451567007811 -692.6975597328465,356.92709815432136,908.0316082383742 -22.009527089173844,827.6295966724249,935.6242739830461 -694.3149140062155,-380.4828734827588,-607.5686976594095 -96.24012996363695,-93.97049923962311,755.5166843854659 --799.9366578656926,-484.51987737696277,503.5978890374172 --810.0267100453757,-358.4711719565996,-225.68921189203377 -245.18759312537986,-683.7347085612708,721.208980699419 --104.91552906745153,834.043423761113,-64.26017273213677 --449.9194821185333,-716.3423426246502,-992.5098105774304 -64.31496996967121,-785.6866061461532,-216.54447273764356 -178.54352247417341,-448.62820619459944,-649.5514152677695 -549.4432452186832,893.5823445632411,-799.119164276068 --688.8193512299842,920.0253145054373,-924.4315563755074 -955.2646731009445,-990.7110338300224,747.3373113026628 --385.3496380245009,877.177716354593,-366.10942272882903 -308.612643068112,-839.9348604681268,-515.340377092522 -547.3586929585015,57.37170735763948,855.9381235740896 --142.4971833172914,739.6247316278461,-102.08912504352497 -958.4965574039707,919.6687627977535,-341.7265888878394 -771.8473408336065,695.2227484312984,-578.6392053448743 -248.58080156653932,-854.6353688203703,673.4214411669232 --650.908232993007,-858.370597228471,-199.56180892237762 -153.84427719928703,709.8339171195421,948.485051043473 --121.01497486027267,-879.1061540294596,498.23115805174143 -130.34651244787483,-104.21731031107367,-381.4622424156206 -4.797055687071293,-322.6407910859381,514.0237354947205 -87.78739298528217,753.695548308224,87.08782929888412 --523.4751733201399,702.183764464289,114.43808986008776 --586.3179237128775,247.0156199124442,-284.56647011514497 -688.8112245841317,-93.40052270691433,452.8827162148334 --808.9275847275258,-207.9513073953076,966.4828729447975 -616.9205789542966,-680.1183952661427,-444.47190104548986 --340.3683822872779,300.73112099089144,513.989518979311 -499.05321761581945,19.748112612805585,621.6410756763025 --125.84383448504991,-752.2388694088762,128.8836833076266 -904.6027692022135,585.9873027850226,157.40129538448468 -293.6113206981938,861.1240540711453,-143.31441113007907 --337.21172211472526,954.483130000898,726.8862670206668 --353.91283076279524,-72.4388052781544,-169.84374198440185 --701.8086426571322,915.6386476265181,-191.37513756048236 -750.6581652758159,-621.2875446386699,95.74162127443947 --952.0772297514603,528.4409676846171,161.82779649255667 -251.17916693950542,-896.558234890693,-577.9233395827691 --851.3382552928397,-422.1713683923765,254.87801536430197 -132.37196863475037,224.29964322678052,98.50254275578868 --453.94240864828123,-510.98500531114956,-725.8806329268375 -698.1417498069841,232.95871708248887,-626.9779749918805 --645.581240357521,746.0712030522734,485.4617275266387 -318.79815981074285,-186.27178492140035,-476.0488714429649 -958.9015262256476,594.4791500456004,-396.44155372744706 -695.1295925569893,517.8638972293629,-405.8389002440033 --146.8942915167206,-628.0931092179467,-777.8951112437812 -445.5240656793935,-464.97628529226677,640.1187314925071 -991.2174230288522,-846.7603721407027,-53.92974983259944 -604.1251186216061,577.9017930824671,519.9943166619369 --302.01012939617806,-92.29348862989536,189.93671468294042 -947.8811671465144,-344.9054581230142,846.2877754337155 --461.28616363901176,978.1489309474091,340.5273736551835 --72.97703928289809,226.78085612720974,-454.9376619195864 --451.65228497706676,-772.8909123130123,-771.8994045892025 --304.6565170621774,525.7109557927433,215.94233519632508 --794.8308793379583,704.4730499518218,202.7352539801327 -921.7111535695594,340.37093482241517,-649.650272591638 --52.43327538435551,296.99519509440825,-943.4705979000446 --970.1794716903842,-741.1939988028641,-496.6711299090585 --140.9017529586489,-25.119052480423193,-723.9447821242064 -346.7831582316617,192.2761233930696,-411.0718023176796 --972.680233129416,-844.7041692934185,-216.6104489783212 --692.0512976686322,-246.36078770405834,256.36520902071015 -94.47485575856717,-537.6482337252115,-312.3550174824952 -228.06239689730114,721.7100560868973,506.4268774777545 -106.80005366682985,-275.4140033670276,-269.8974449163891 -758.8346205287921,-921.5128479189073,975.9652888405219 -328.75082170312453,362.2753981447811,-924.0043253905156 -211.05854978254433,-30.443879819105973,-788.442186211866 --444.15597846128185,780.6289124273026,99.9768317319058 --173.16684965218258,-854.6356883183781,428.2430548046111 -405.70164679206505,228.08721394512713,20.52529244129846 --132.4311955852546,186.5421859759847,-533.2090965431867 -882.5181283552954,177.58905836045915,-377.6151112912469 --100.64029822968541,611.3695777537846,-676.767878539405 --414.32875507947915,359.0160454731108,-369.0215870355522 -585.0033637229319,-739.0930256452783,525.372340909217 --863.2965702988676,-974.8147746650104,796.4470376643242 -162.6784338645973,-296.34620582637706,-534.8107260722992 -233.77156652163217,18.004367073476374,983.1955510599703 -966.4319733074915,270.04913228321925,-114.25898778821897 --17.7180617306758,364.95813247372394,-796.8509115292372 --343.2958523785636,-849.4555179927922,-853.2784809661609 --608.3215162115325,-29.49349081354626,569.5486423255786 --29.00821766825493,-329.0467788782605,-835.2940193264837 -100.5910463662592,-457.4628270336465,229.8683558342948 -954.3754782648366,-777.3713570448997,-575.7492025561202 --53.81092380125051,937.2276306918591,543.6195525399912 -796.4583863256603,-332.5703030484142,984.0769475571892 --794.3343678716852,-894.0541879077983,711.2052541080564 -854.5297404139724,-818.8292849077965,-773.145146508317 --933.6516844884524,-790.9848747145518,-581.1603663994383 -940.153237820002,335.7204444793608,557.1060510370842 -552.2788073830443,70.14749955842922,594.9779554260344 -191.6150647799393,-370.90780479328475,122.22021753680156 -67.01717226902701,646.9061075186412,963.454434763318 --177.9148691581389,526.7813568827194,-800.4739919237329 -553.6627388965771,-257.16617601353573,-921.2196742206266 --273.5076428756455,221.28550184328947,-761.4996646370669 -848.0689848605091,-844.6551734543228,860.0134396663323 -414.2750358713729,-340.5756491715928,-218.4993045818136 -481.6187294654883,202.9422017624147,343.28584290989033 --221.67076697304003,-24.37303638480205,979.7349680757868 --572.1542590005646,-164.2876269557372,-416.3536248520654 -530.2230208796996,528.0252513314415,-415.1090780052083 --837.2193667340342,-977.134646655592,-145.098933515029 --179.32481132845828,976.7797572797258,-60.39584860464072 --487.16326084915875,782.4588820629349,-17.864100692843067 -198.35127042115573,-808.6625791435747,-234.16718534045185 -888.4473489475736,179.01076835085087,-310.9962897150766 -251.3343612631861,820.8221791562323,-452.01879905481985 -10.233436941348828,917.3813078235107,-655.2077134030947 -439.32785119342316,228.96201640596473,359.3502622812696 --297.56073866486065,-372.2412530324701,368.419341176741 --568.9134297909093,-160.69051028198976,-623.650707894164 --983.3903177533405,940.1147200761388,-136.59404268716196 -938.6992288396505,-719.3529604643478,174.73355891497204 --598.0519344175208,580.1482539265494,567.4059775219505 --774.7857019213764,824.1289057527783,-610.7407055935507 -225.95468317872064,971.267240175408,764.7930695327277 -913.1278571223381,-314.8024575637611,-788.8487155610733 --623.3062534210999,0.9897901532276592,586.4593565466444 --699.6927116322495,319.4630645215143,-352.84479192097626 --317.59585521569295,323.83546031585274,-66.00116093355962 -624.0665860519878,-688.1629806743458,579.896539534077 --871.5295038851582,-611.89223950879,312.2994290063307 -709.8513130221424,-494.64074452130194,-345.6167883421741 -74.24149657347994,-576.8543870213954,622.3125231750114 -547.2732900115216,-709.4165760684368,-72.34053636673582 -549.6555333092429,-325.3409377931704,266.2136454354634 --899.5737570848546,217.37752105863592,-694.6940399987859 -661.1666502289027,-289.1010728390431,-436.89227454360855 -681.7779534229701,-899.7119538563795,-206.78240133131044 --259.99291884993727,-430.39925150089834,823.508664002954 -501.85678703344456,-872.1536716161224,429.3748988699083 -54.598266257587966,801.7357888031584,-374.1087653032831 -148.3239992191659,1.5105494819720207,-20.87818754478849 --87.78920096557476,-588.7410489354374,511.41984498478564 --97.32793452142266,917.0325500052115,-478.38314561444736 -365.4876792540822,881.4341592782168,326.9166460321851 -742.5458152347892,654.9619195140122,-279.7645690219923 -200.247879878993,-687.4773203772888,71.05176539119907 --539.1560563713256,487.47362990489114,56.11684378424911 --177.54527473667906,-462.4058076660449,997.3969636825736 --856.5789582301346,-912.8786388551599,-565.4851990122709 -942.1449172556393,958.4763366399688,309.85546954427195 -760.2133344128094,-572.0765383184092,944.0841883532471 --714.4302997208706,-797.7496236366835,-775.5769215054543 -146.25584654512932,561.9488014361048,-266.66564425073375 -955.791975572253,-131.15972376334105,-699.1028984535674 --68.06650362772655,358.0743308448798,664.4515610087574 --82.46342008681415,187.21365209833493,-465.31057568229323 -291.833052811028,971.9438879006875,-901.8928548244123 -773.0613414103354,124.56500553504566,-495.80268087540014 -909.7794200185158,-33.2913938822021,-336.6194966532288 --637.0047434583178,-511.09557948667583,665.6980831828851 -228.82001863433175,826.4912389766321,-536.0630956844284 --757.722852302197,-987.82493804882,15.724075231987626 -996.6138607639764,389.9305376372779,-383.2108160697079 -753.7171660523434,563.4445319759193,-969.1696678469215 -633.7209610820448,-398.94648552300805,-700.6530708327978 --547.3383205258508,-62.84039124972196,-150.264145863978 --422.2254012515465,-655.5633555859346,524.4615792843385 -980.2195674698341,555.5831608393808,-408.1260646569176 --510.38207717573323,-564.6682478681236,-726.6098510219274 -102.6610993846025,210.80074390668824,411.0053213262745 -360.426741867336,-415.3333774332351,-339.3779892063069 -363.0290708846758,-301.1047184327433,-574.7536207613739 --251.32769260652083,-455.83168484404473,-823.3745575628444 -660.2778045533071,706.2227783140727,-560.4993996662411 --870.4556009495965,477.65487470235894,-576.9427482731726 --213.12902112627955,-871.7294955252335,-547.4608304831297 -585.8045566592716,608.7928938304037,-585.8303502245792 --328.172309786621,-731.5231618125129,-851.6547394301552 -984.343428896819,311.18790248967844,84.1930183966374 -530.997000810599,680.1543193754483,613.429536089455 --966.9211014202468,-626.3842036190031,309.81060423566214 --248.4813043920742,964.9653021222141,330.80958527650796 -913.0978174584129,-597.1070367084124,727.9140562300461 --357.2953883695493,979.1296164756136,-684.6226558537054 -32.6796376766531,585.6890676742439,-134.71503879192824 --63.83187962470663,972.7115910114821,-149.38369939769336 -208.14420119812712,-890.9206786496986,684.42016042052 -296.33609795908706,-191.95979427437294,-967.6609200909605 -183.33764118700788,-974.6843430316757,-997.5927721819642 -232.19712429870924,-621.9658653308915,-616.2249005638093 -306.5431316654874,-892.6056241212515,-373.1888770508873 --701.1361957159619,160.35273959306778,323.5303094547917 -442.27170719808714,-489.53756616286915,-821.500496726832 --842.6326861162044,-147.6969030985524,891.6888181254301 --564.5419315059507,-486.5167973169014,-798.2223957882821 -211.14054778786044,359.74574789434973,285.86241632151996 -722.2604860895624,-27.148329947856496,-731.0859184658711 --421.18973859117466,324.8599468427035,226.24394748311965 -62.00625948592506,365.9288373773743,274.78170074659874 -762.6497789299033,172.03275495659318,557.202717401113 --502.58568806706427,356.36516917813606,804.3882367653514 --228.5353442003335,558.2083746772932,449.57860239087086 --880.947606256355,163.01661924814448,-739.6213015983952 -934.6383444611822,622.8150054013124,-780.5523975057598 --756.4960047046432,188.947709825238,-310.22165165363333 --930.1882818537814,83.28301566610617,-224.30980062830622 --797.8470152565146,603.8407845119652,830.1535305576119 -513.18786802826,644.8446200325545,-567.0188654677652 --472.854098162798,-582.9449194016245,530.1268627311279 -895.8341578689942,433.67441346780515,762.9335297591119 -277.398189766345,-224.6801988824019,-148.4767701393896 --849.3571356651903,-937.0856095079479,390.9512083781549 --123.14221597763878,104.43013610925891,115.32249524483268 --445.2483733333971,-48.21497834101865,-58.47955666459552 --223.14555754428602,641.3507668021409,-97.67199262480824 -207.28904901197575,791.0402407616521,732.4672457178449 -780.8444075583302,-459.9900070699721,-930.0350233838743 --477.8664002093416,-442.58530875858276,818.720653449936 -298.4854656759412,-836.5920807955424,-729.2428079777977 --688.6477489160492,260.8434963378463,470.8280510140062 -719.2878211307923,881.2731016124862,-596.5908852271165 --380.4550305519019,-519.3542385103387,-282.4768650677245 -829.3302148474988,150.225133878723,476.3837946489982 --19.76152774643606,-942.284173327751,-871.6090280043713 -75.84606253577158,437.57806964005135,-569.338944942537 -443.819147984608,621.3315469670249,-176.2050432757776 -492.8384656882099,-191.9400993430802,356.70125891004 -527.9940986390861,983.8532366162217,-309.20667587280786 --177.91843885077708,-668.7598811796573,-591.8538831963863 -386.7900051967554,834.0911803089521,-210.79009667751893 --640.3111063289175,-429.8010012340119,-89.89659038372281 --418.6993412692632,-532.8418337562675,471.9689775141592 --984.3101575187536,78.46105467296616,587.5336140595077 --467.5434273650636,206.5830212240346,337.80021123723554 -310.04939281018005,-108.30073160256461,-306.84402424844154 -671.848146055627,516.8919139997286,-357.48965317217494 --793.9616111155879,-856.3849091090616,-811.4480442021279 -165.73872238408558,-896.6756483420206,-326.1462500719232 -506.3994038284586,-411.30366696924386,526.6161543602598 -490.9340764141107,-508.3457347335674,457.644360185491 -495.5532765442015,-205.0921486659463,-579.1590325169635 -42.541613783738285,842.7951760003928,279.233464864124 --654.1550047454775,365.5138494670398,-145.59394543633084 -183.05759471074612,468.1280700462157,29.89470302888958 -627.9679491466172,444.31115863325545,230.14668003702127 --698.414368335297,671.8982218231367,871.8111706396321 --726.0697523814104,-23.517741133138884,-482.222516058991 -509.04661485112933,443.25927200939987,-718.2297588592025 -754.0545425232742,-638.0538720439954,594.5180512962149 --86.03928074399028,-343.4554128836975,-683.521474651573 --664.7714877067413,323.7811094018007,100.86077589424099 --755.8291566975346,-774.6042791233497,-855.378850454417 -487.5346947470882,423.7641704585783,-883.1380182908497 -120.5401511939458,-830.6476895146202,807.4915412178834 -814.2348383602648,396.46597962626015,852.3778428788999 -622.906060827381,657.0771518540987,139.41570113986654 --387.8816035676482,-564.4017697671568,-345.5999559221417 -256.9908601781242,-654.6869283352021,-482.7195267253568 --63.87827440907108,-533.8998029507688,177.2873394321232 -846.3520569126597,496.17873140625284,332.85322829782604 -165.44295196755752,-24.104181485870185,-626.8722807306806 -789.4209108537311,-502.92799597432736,-817.3822448436786 -500.0303584573903,-648.7689313376673,-256.20800091764795 --943.4301434180405,-725.8641149191038,-653.5927384801759 --891.1797444996441,313.3139132456904,674.0155916062345 --253.36918726811803,749.1529534364015,-573.306850879747 --349.2191528775211,-698.5260139376633,241.11839083799714 --160.26081825938627,226.56669368379744,523.3498107883672 -91.40603206589685,255.26070980357576,870.5006287886658 --401.87138078231374,-281.6721227320937,435.4067234186739 -222.61103411077352,-642.9341909205704,-247.70537997901965 --64.32397375057008,-161.22032406322126,-643.4503833559183 -848.8601835685245,524.6375233879517,-37.28833578429544 -360.12205661367307,794.5653442710436,-727.6517152768575 --499.2538985860446,85.4024945132901,598.0207427047173 --927.4902091169453,968.0363003927209,-90.18679423520575 --281.537718756554,-414.5511243204562,-651.2865846982568 -583.1478178600557,910.828329492193,-172.71049030920358 -904.8413895069125,647.5952308700682,-37.8977450473634 -348.05235825226555,-130.03164165907413,117.44681642510477 --883.9073259629923,392.52695060106635,-894.3507110317266 -634.169893839299,649.893858921115,-525.8454248875707 --352.67443792839947,-37.37924288341344,193.32581386496304 --425.2926765160065,184.97280926384997,-404.42585354140226 --889.0185578578787,-994.9449003361821,-797.6978841631428 -584.5014003280364,922.8626247666743,-146.0676014375615 -25.36790689988561,-706.3036618531478,102.06270536031411 --710.6901959860463,222.42866239766022,866.5173351617077 --608.6029213939207,529.1274361142039,-952.995154363352 --249.005517356758,-778.502984338982,-295.0491168086012 --652.9261607222329,-253.39001975422514,-164.95438778493929 --398.8177544381632,313.24389894625824,837.7041025178194 --198.8092517894553,-615.3136870499571,-458.55448360803325 -708.001646992738,143.2794465402958,-89.9779353860855 --700.7265569821466,-100.54538335243615,-443.0159932852267 -886.3262557066985,768.1402188314626,-832.194916343604 -33.30697852248568,-549.8833089706559,-178.4458209514188 -753.6959965029127,55.029039777089565,-331.5694132584804 --584.2232917900059,600.6497188129786,249.0360307286942 --63.869079147537605,-565.0312922740438,-331.5072516857374 -919.686853477037,40.17987521166856,-198.60143751349415 -42.84408469664777,557.9770117992173,-319.7821269942624 --642.5877581347822,169.87223667809553,330.4082069621343 -425.43600591709924,763.9751815322593,-257.65175862177387 --849.2902075422164,916.6971672618845,-129.97614512504958 -246.51501934626253,332.61064625658446,93.02741740240708 --589.4849405274598,510.28610023228293,607.5039486081632 -105.95117203487962,-22.87767883031688,-772.1236337440293 --832.0966770004324,-320.8703088729426,-378.3076889652135 -907.3129019265425,567.2454848868595,319.84859051811986 -35.29617803521023,-665.2649385466973,956.9133443685678 --249.91860351957996,-786.1487951055104,-12.402208568507831 -747.9960232261665,774.582003554659,-978.0681678871055 -772.5914895027995,-457.03156500028297,-922.0552720631539 -695.5805407257487,727.7335119764166,192.46215968470005 -148.86751459271682,626.2405452428388,572.6191054205597 -780.2109468854082,105.49489519340705,935.2941854656174 -992.293661866677,-766.9107800027348,699.0875191082441 --0.35548450282192334,-224.86732340033575,226.14461976542998 --888.068885475986,12.922237534159763,741.7811400533335 --573.0769677220624,-147.2202104611497,878.961775429751 --142.87232438860542,-283.26473533520334,-118.9267037532436 -38.90553303511274,263.9826882629377,601.3856018334623 --95.7955884713715,634.9618701802806,67.44132270416117 --323.03897926404466,315.9016562388283,435.4445094869827 -116.09795125897494,-886.7700537305532,-660.2342496783501 --429.40455821954356,-434.74878809701374,346.8416004937412 --963.3026766527348,511.3635540990397,-469.31505038613363 --379.9563075677952,55.81965588784851,-568.1487981220849 -768.9426271510551,-829.2624413468694,-111.23527539787028 -698.8445389097799,231.6877888424715,-415.3409683147331 --158.47958444707854,413.3887606850292,946.5214867277987 -786.277436758867,-315.13438323524645,996.395758575715 --992.9906729378835,-944.7404883831698,647.6810303423877 --601.074626333896,-878.4614632075182,-525.7038535269955 --147.79969203827955,461.1325408668097,248.67105310241095 --524.7575648791592,6.5408962011688345,852.4282107971376 -630.0155539675154,-353.62043033641316,964.5291227113926 -417.24080087026186,-875.1012886664364,-929.6785734227226 --663.1841019799401,455.7117361002936,-632.5221483151442 -22.973538417666987,-813.4797596383365,841.7723156603902 --312.07877283286484,816.2641131212615,889.7512838210887 --987.7427053726384,-71.72962560253598,-950.6878885862143 -817.3855326058117,36.815089469151644,-850.1119746030064 --779.4465434468663,-232.98195101452188,880.468385745779 -385.81830313616183,735.2377323782648,-267.08670732004066 --913.5726009000034,948.6352744088283,-965.6540186752609 -895.3033061621779,-262.6451523017106,-979.819189956237 -378.31446344901656,961.0806080627083,931.2514456751851 --678.1259775951631,-637.50438786769,131.07782923932018 -274.60965285664884,478.83582733173125,-637.8992790557049 -918.0141735288689,277.47851257847583,694.0938377411096 -80.1314305683436,-171.4463048202348,954.365813189992 -164.2427416396722,733.7471655983579,906.5847927325799 -350.7092540173185,97.87735703734984,-992.9782981786988 --919.960718521988,-598.2975678977673,-627.9831362880095 --490.4824096003093,-390.13072460467833,-279.8690128985435 --158.9246198622469,-802.2673230879707,-915.276136094436 -347.8888981460468,74.66964968615548,-111.71159555976078 -268.87988233670467,655.3588144070809,-144.61418176759082 -282.23893010395864,907.1444476703175,679.2489917231214 --147.99837899518104,289.43367562948606,-645.8581561681206 -121.04436979017964,962.6565822768855,36.630230405044585 -855.2765983802947,-185.33015899347856,997.6896543692624 -158.44007045511557,-915.4620115281309,173.50959338277607 --450.85460864080676,-935.0373559282106,641.7066093893266 --448.5407260384882,593.0971080929969,-423.564834088266 --611.3472922524514,947.871148208855,-276.7093444899609 -202.7524228863208,219.96298562894322,120.94696434700359 -829.3914870424292,348.88214273373706,-192.53399179013968 -724.7607690485481,-637.8742017680712,88.473515220835 -901.1007438875126,250.7952597608255,633.9369009497525 -307.1214510903858,678.7417270757808,888.9757596904872 --454.15654493452644,-660.6778374865623,-32.01849933492019 -403.7248536484317,-545.6174936355678,-991.7970991396659 --314.1297683265893,937.7186709355769,389.93492121169334 --197.34911211755218,-614.8478053063193,-287.82065249050606 --660.3211333975041,-787.3883573740972,813.4847451451078 -995.3006767509471,-671.7711208084194,-890.9548822434406 --340.53778570757527,-76.68163847716937,-590.3575058482911 --397.15017640288306,-598.2585286166845,548.5211368649025 -425.1558864945216,269.9030315219634,-225.5642858415905 -818.0818826284719,939.0650830700399,-652.721374749176 --553.974717176244,51.26205600073922,-817.4988614355094 --127.10320235377435,163.58252955542025,44.147142274666294 --338.18283384394783,84.89161215441368,917.6019085176956 --587.965191417248,309.6627167880072,-913.2066116878963 --867.1671910371301,103.65644844717008,-790.121639344101 --955.3064231462853,-656.9740047039556,129.69834199914885 -406.6819090378649,-595.04287171724,336.51887441634904 --635.0473378015413,226.91485326251427,-176.08064020840231 -307.5990186672334,990.1055049584945,875.633930465124 --991.4364843277928,770.8775287246115,-867.018409650467 -906.09317231969,-436.3486418006306,-235.9303391774581 --816.7235896485442,-775.4544833421808,453.4811304586392 -888.6644714965832,221.49698990861907,431.70003105362207 -523.939489194307,-474.3714508941166,-909.5407381595702 --996.2545121616629,-298.7014340919627,-517.0715436015678 --875.3645499016287,-640.9434150126665,-751.0022034641045 -829.7567612347407,-719.4655730816621,75.29692797535836 -186.21191022432913,86.97891541726744,-801.8871315680241 --362.40327649889764,-897.4593350736934,-208.660171807368 --622.802137456816,123.2650665687595,385.61678769820105 -64.23972040941294,-131.52660677720849,-225.33315828661512 -683.3835361940075,-561.2638698694599,468.4366790577376 -514.964649480238,-161.59998545853102,-405.3988015487213 --58.91702790804959,-813.572148214603,-908.13993554182 --776.7936010962164,-625.7099370755477,8.353640676086002 -698.2732723222443,-528.715336000626,870.3240214935561 -909.8158178700069,917.8092096904104,675.1254693526475 --272.3499184045588,-854.6321779947539,137.63746353298984 -117.36288787446756,699.951534219191,991.9821018922103 -16.31461312029512,-309.5919379204315,-628.196576887466 --990.4003503652585,18.227384977758334,111.03733340519148 -649.876959634795,9.15393578560122,832.936697332113 -256.1669531428711,680.6724764421663,-703.3965303845058 -710.6722606046294,350.2877088876967,-659.5339351233389 --620.4728837079783,853.0012380884427,-935.5692790992542 --74.93011340858777,-373.04942013179686,330.15487999685615 -679.258775137984,-279.24375688686087,-146.19582535432562 -963.8355690028284,567.8330193584056,794.4082618635828 --122.47555869674056,-531.8475920317696,-176.27306922709658 -432.1838356630269,-781.1391903280414,-459.0617887669823 --906.7281990768192,-135.30452332373693,654.8914719592265 --950.6726234039784,350.647053614332,864.9917490274793 --526.1442769776354,387.2696814552962,950.2038022004008 -924.5561203049265,-530.1416139417134,-799.3378935758626 --703.4349242081681,404.0713369642842,451.5177509065511 -348.4731232563979,-327.84322451552384,-660.4461204837557 -161.52218390450616,-32.63910848426701,457.66829424460684 --117.27984262875714,-322.72061062706325,-413.04284528197127 --577.0593599005069,-468.5072476266772,-810.3391223117973 --306.28597814222087,-926.8603752740836,-627.1723056673463 -493.5408892388582,-349.0620226467547,336.4740339546877 -433.7683511945547,162.3706854642271,917.3954827307969 --957.1202667537735,477.3053011762843,917.573287880816 -724.5434587058785,-664.2146163899733,-346.3593874965359 --655.0963202470692,202.61672762940816,424.3759639589846 --365.8524612738836,79.01314796859083,381.84114014239003 --157.32036677790325,708.0310609109185,543.0998705756342 --870.6689122988587,242.250598181658,-529.3488980805007 -115.03652933455055,913.7768852659324,758.1240091045004 --190.96719376973658,-416.97228331129327,-531.188511183482 -65.02973951304011,-771.5030934838874,98.5500162564972 --997.332721018416,-352.30073850831036,-560.1313723388375 -942.4375799215641,454.48463913995806,-300.6932390755246 --814.309826938759,33.601189381248105,-573.1042373479154 -72.85909179671557,670.724708357785,231.5851042027707 -267.57683909000434,82.0605781256229,854.5312652628184 -863.8053688412067,25.446402147104436,-388.48102571299114 --80.82598824111221,-626.8841756087686,272.6886306361787 -0.18467156446649824,-793.3990443734402,-604.7044377607693 --40.73608760094635,775.1779814377167,132.7814412621949 -363.07000041694164,-321.9429005121806,142.82278608846855 --105.24035472386515,318.25982524632127,-898.8488678419792 --13.399567522081725,-408.0147497120661,-347.6298774441815 -921.8348631161227,-634.6103745772344,-377.50949484280613 -19.785151461743567,726.0538962992473,-166.65983358725907 -487.73056177634203,712.7481964296048,-379.9672883563021 --214.49963292258008,-286.88755262328743,665.7116172358421 --911.3062760927977,-383.15782234264,358.81711519025976 -130.88699913068535,-127.42128141261139,79.8964544427688 --604.8308283433635,-138.56675678397926,3.405968352698096 -802.3782439092033,-478.3296743920473,735.6570043298652 -288.4828016519639,-959.3183378647981,449.2626737987873 --928.8962449018898,994.7622536276263,745.2733753823957 --405.31250491990863,-485.1775396065891,-237.11783578878226 --287.66606937111396,-255.32436322923786,-363.44690776103914 -242.2668136966629,-671.472672558752,691.9625848920264 -624.8049680626307,-47.0335842894591,705.4599305570953 --505.70985993941343,-964.8690885920661,238.41585005964612 --84.1811860705692,134.3290925917413,798.678818036806 -939.8511471318868,268.9062795112061,528.1111797048768 --832.3831330256714,-678.5688302169888,466.4096099059532 --137.26908722399617,-108.06945919118857,-382.78463672912676 -214.7127669554875,-629.6699091675948,253.8325586277913 --652.4022857295206,-872.3479305805728,-339.284622601878 --537.7193159803046,777.9832771126646,-890.0930922627468 --646.7726148517543,97.43921116609886,-37.86561830505275 --908.295963250597,-985.4951439697111,976.1358839222999 -317.66940071767635,-269.18773819688636,-59.1355046735174 --466.89975909142606,-310.2524326135805,298.08893453642804 -765.6235977347415,-631.7399538376303,680.7230107706375 --756.8867409634619,-570.0155528232176,-925.649423900708 --718.376275814001,834.6062909281011,-81.12250676324288 --844.6682764432929,919.4536760779226,757.9846155173002 -509.3650417362826,866.9455838951158,-559.7411583284718 -672.7385860201728,379.9823927086122,739.5184991353767 -593.8231314852596,-307.00987364635,548.7970740345111 --475.08739403021934,-342.8156739438904,-784.1885655540477 -870.1532319609375,-417.9932731994369,41.24493034290367 --217.3343270676147,919.856241167003,-329.9016581230352 -557.0916428453781,710.83230926236,-128.78700503806817 --243.6563710941375,495.49164186525604,825.7919606124681 -509.86346614447643,-545.7472688162688,776.6154948754106 --224.83666512633386,152.45882355586855,662.8712385854221 --623.2104651990155,569.0202713551062,192.3255958213549 -786.6832836552164,-656.0591963129141,-158.63552591814312 -665.6861857336748,-961.5365930864797,-775.5972664687143 -981.1304255134694,-439.21164281929896,951.0863874479066 --634.9368979826522,-277.8111139853288,505.7388890071413 -315.556814476357,162.24479985811104,59.79835161001506 -686.8808873294804,-530.1028743332146,-115.0581460129631 --689.0954156870855,191.88319146140884,-498.91115145735967 --332.3158713132284,-57.4985667529437,-946.4588285937443 --816.1241281583247,371.8584414164393,-142.06003856498546 -729.5804439997908,389.34400728839887,-983.7981167053551 -233.42466153426972,-812.5502678805672,561.8663595809885 -983.015376557004,62.3975884830229,365.55900038826076 --525.3716782104968,-124.80451249241287,712.1906644727674 --665.1541045074976,-468.92878877247574,-109.13264942793967 -424.497783688028,-248.2320904086523,855.4645595660077 --811.0858974625617,-258.391604910305,417.9082468568438 --548.0264686770151,312.826268459346,-671.5660835453082 --888.0394302766273,-757.9685665027023,859.9695662682693 -103.50176587910255,592.691550959298,-334.6909981898975 -185.31729577089322,-10.095732590016837,891.475918804588 -495.14927210822066,461.08526299315804,-907.293461131441 -99.33933800738214,-66.0170921963703,855.6845332123889 --485.31602362093554,-460.33309341781137,-177.3075022369992 --513.2605731872479,-741.6321643825011,714.8296933016015 -116.5530488078316,722.7254379131336,662.2695308073919 --435.9152904206578,95.4748886485479,-833.5645945198592 -830.5037680615169,-191.47456986969382,-212.64763222195722 --394.4892587640936,-78.67251057859232,-496.4812269091039 --250.29545440639095,599.8940971697637,668.5110071703436 --391.6350447429677,-61.97113889442414,747.6395525601044 --894.6533363406057,778.2899239915707,-561.6313086953367 -357.0784884287516,165.10339276920058,105.88149637850415 -718.7204495056428,-796.8557127106775,-305.943949348728 -76.50549268953114,622.5777078920796,-567.113833176657 -605.8596827485526,-200.72303501212855,-622.1722871326092 -517.9728808869652,-818.2021970509044,29.53474815088589 --872.2484322762232,-287.16428968442483,202.15359801278532 -112.23108297442627,-190.68916419066693,-141.9040120557686 --546.460893298467,-88.23482315179422,906.5097114416685 -700.9058355675809,-709.5342618473123,-940.4384253581582 -867.0486254332611,53.49949976149537,75.67564629861545 -561.4359914130446,-370.6220522573469,-36.18486232799569 -937.3258262934751,344.2973738648143,-692.5099360084282 --733.5465040312934,-591.4704833339893,533.423348841435 --409.2459923187679,-957.2223066498404,888.3487270113237 --660.5731672101787,-980.8836277038629,-525.7367952333541 --529.9424257637327,-155.98949830855395,840.7796630000737 -758.3698355581957,-86.21089003514419,-178.20019001638695 -110.0181729497026,-513.0919760564685,-895.6300160672744 -878.4482723424135,-626.6020302456545,-603.1985415085672 --55.0793422921048,-16.773310319338634,-963.1315805985162 --704.0905224520586,-243.69036287851657,367.46138702107805 --543.1630863361283,-153.97110751647472,114.69012943293365 -777.1849892465841,-347.8589953457533,-732.883468273033 --21.455548204783554,493.44320336812416,-780.2804858945332 --150.6330166060792,-964.4297174750332,-932.8816367054977 --34.09327356666881,-403.6054036981411,690.2145980108244 -204.30861225290846,-92.13407651401928,-184.1292578914073 --5.509039620873409,-919.1223375746773,785.5867128413199 -996.6063114679166,-637.0257502826026,-759.2340704507606 --712.8450731028095,322.05411646873426,322.88167690154955 -695.8483245568218,503.6527768525066,-100.62065326132051 -225.7107231306377,376.5693407360159,25.47294057045042 --48.69803109672671,290.19489128530654,114.94909795130752 -287.8846106718206,225.70954792672774,438.39312102730923 -285.60701756575213,39.484972874534606,363.59362256877307 --101.03606962914387,-516.6575480547979,-997.1635597321691 -119.92829429168637,181.31045321728197,944.0979295514287 --277.04333181144887,-211.73351434337656,-596.4008373156196 --858.9314095253562,545.608985723481,-500.63787132134996 -217.80972206007596,375.5460710909631,-57.52662541670463 -752.7042260543833,-112.4103180405425,-430.1827539164698 -792.0310459232446,723.128568499913,-671.920105847174 --948.0779632921581,-820.0288873007586,-426.9052028923659 -944.5196034834214,117.03230632165014,-253.47653594146232 -777.4321892254927,-93.72733704300072,-369.52274319795777 -882.4390574913148,699.035332385356,687.3367508388819 -24.569486100426275,578.87679763091,-641.2932814708963 -146.44591511248723,967.6918456950914,-418.0831389640766 -588.7046584953503,-19.04318558386558,-920.3886335558253 -526.0387956313348,-662.8617112157744,262.9471342655004 --828.6716119060542,893.7347949919297,-416.55222563927816 --547.0706166452102,-741.7271918673314,892.0043866780957 -423.8074848826104,483.3217774361774,-1.1908772395108826 --50.544429459033154,-779.9575140170467,119.68219116798355 --506.16700978241914,954.2906656008117,593.1618800302947 --174.0158796142248,-697.317482616934,570.663382277568 --755.892465837368,-621.3324930058591,-576.9589645115452 -113.78127654618879,574.1133079807325,-371.37024255061556 --830.6603714494212,-70.92307295116166,496.22048231987105 --556.6723138252235,-560.1509039212515,894.4540546934215 -908.3074542383558,980.9314641231529,615.3192031495603 --623.6316616641088,-576.0369584014772,-319.54951695521606 --363.73493733301837,913.0554981560181,578.1479657633872 -448.0175843231077,-628.0735518837364,819.0511187246591 -655.7407590123476,-672.7163173441527,742.340663921945 --455.50492725905747,-838.2605083357879,313.64461302842005 -307.6093187686613,-810.1359808687638,-362.2963821268353 -985.6289245110772,356.8533340174738,460.1503332066584 --574.1654287913886,-842.4358579921713,-446.19662051812475 --502.2032296136161,-530.9117985038938,-614.4913562259209 -149.5113813108087,-343.7930483163565,640.6900300950608 --632.1051643052319,-70.74585826291104,-972.68432714784 --36.63535508961593,-888.3235582470512,955.4470237452872 -581.1842573008257,-19.777046727089214,-826.8252836412995 -184.8908815808286,517.527501403755,-618.5654939905094 -136.41668157498157,628.421796765736,536.4955552926326 -605.9840357343057,758.6468497394396,875.3642043189404 --188.9576895929281,137.53820504575447,581.3190520912217 -394.2796278915664,991.0404565287577,-972.6446977907117 --289.73356936841867,-437.9441474595951,-475.36829966893083 --554.9404350022285,418.24768163045815,-830.4810534493563 -483.21766788667674,386.8516840325469,-498.3917349982072 --494.33243366967747,257.72117068900434,524.3422109673556 -752.9712261747311,704.2791277089516,929.7659883277063 -162.76979067302227,817.3111226807193,617.0265465208215 -789.3352486280271,-976.7467974292667,931.8059837316218 --52.93967430704333,596.3659791496857,-745.5917613244383 --208.11780837205185,-457.07867395801816,-416.682458998126 --753.4887600982365,611.5276650860139,-981.5153708378436 --374.989086029595,-651.17891356717,178.0778812166809 --491.4951947709123,-482.00309094380066,-23.323712009362566 -305.3780786818513,-757.3905908696728,-648.9770950690076 --505.6505108109648,947.496428235921,-205.69500011415926 -197.98018126205307,-516.9143745680442,-19.080949685024166 --851.7616512280839,-930.5157081553461,-62.532946357079595 --202.6814249631759,-726.2393606163446,375.20285784146745 -985.8069817985288,-208.70635760657512,249.11727183478888 -925.9518847289714,663.0699448937505,-72.89555339462845 -474.97896891983874,-743.729919498952,24.207710927598328 --441.87944564012696,-677.6726242076778,-147.43818749093032 --737.9708911327712,397.970216348971,-87.51991189332898 -62.28926512932753,-707.248122663686,-720.4566778130111 -166.83087052024825,970.0194956588925,-807.4988335245488 --428.5371428684375,738.9182330757751,-855.455975489526 -751.7714427339026,48.57196674950228,-183.4664521471483 --380.63887129708826,-405.7656837443162,-388.3948351010424 -769.6061619203915,447.590460349571,339.4460156623011 -597.4982979040014,-485.77067399171005,236.0856241635115 --79.86752208409814,564.8832704003867,-381.487779053429 -286.3572337397916,764.424823634627,-195.69904761014254 --866.7558252650771,32.10164468358562,-308.0550243859482 -344.4507610943499,902.0658494972122,-28.783364006305987 --67.61953968893226,309.1696003829204,-793.0049928128647 --492.9876221499707,837.9586510007971,339.8852267275324 --973.1119120331675,-590.7490548819603,365.67453205779816 -528.7984051251485,679.7191453480837,-415.6463932359102 -862.0571925551253,105.89378715578482,393.0780447757859 -193.477725559816,-754.5198906507591,926.2293187697596 --754.2488402116946,-490.2360871776328,627.2557604459603 -237.19392300220284,676.298330752714,31.4723767480898 --246.0135292667303,843.6909990955699,-927.4953649704103 -712.2604407060917,-538.3644296244368,697.4726555079355 --721.6067731662288,160.43792738108095,776.2158380229441 --52.92070620221898,493.13334760678595,609.3432357111169 -472.9884174335584,850.6594737491966,-106.33153896014267 --653.7491216696885,-904.3778725950405,-507.0802607249898 --713.6049922395158,115.89748286896088,-630.109325576536 --922.1325854212577,-928.0203422626643,663.1389967297232 -182.89986288604973,-283.8293962132436,788.4560854804938 --859.6067771845728,960.6441454556518,232.58358050892207 --633.071492062303,358.13819795393715,526.7625195671253 --141.314433258451,723.2652124910949,-698.5351854070593 --442.32483284478326,-813.0152768320204,-578.2443187852957 --522.5423761777099,835.2663818434203,-843.7806224976875 --145.16975962458116,64.79737445382602,797.3861076043215 -995.392437322427,506.7762298396717,941.5819811380591 -574.2022650717474,926.4052819428332,414.5414518889104 --840.4731490978579,-196.15962601464696,293.19456760494086 --298.56298109149805,-453.23216377244285,154.79853426618206 -867.0037534048697,-930.0362529676929,538.4624070828754 -445.4545560892543,927.9068507765742,861.4224446650871 -524.4651240883857,40.81752936519729,-591.4648935329603 -90.47143665114868,530.7039878393075,791.3384252757862 -579.4240184210983,-609.466129617892,199.37262845611872 --335.65308093728595,-981.588665218714,-599.5581284226679 --773.5587001331014,685.4382470789371,-482.9874957043761 --430.60406222488905,919.8731435977686,-241.8265539022957 --980.8287197112109,-432.3077033077269,-761.4008387963751 --794.3828765282921,-845.025419728501,186.51894035075452 --621.3045527402828,-277.51441191797915,724.0354322600335 --151.32372040744872,831.3827001032753,-4.123893208787422 --202.32677032048855,500.7778541814032,-853.6498024639958 --821.0432340351653,303.9474278459213,-26.118573521503436 -580.8305006384205,832.5416746870628,-223.26624465690497 -192.82005316929258,1.3932555906197877,963.2213112848658 -662.1688147131904,823.4754165547072,-491.31982484479164 -545.0528463251887,-469.0535500047022,-582.5149331432202 -888.5323193111017,-961.3911665642668,930.7774073268592 --701.4762060223876,638.8761635865362,-448.15489386379386 --298.5953451385452,-566.4845773560301,171.02808496215926 --303.80890498425185,314.78607898932637,-968.7053641158681 --871.2502329699207,-800.6776945375027,-162.01262937953788 -629.5923453199521,776.3558207567653,-510.3785198781985 -148.73944847802795,536.729985385201,-422.34114016078263 --181.98452652745357,47.94840537142795,-730.2503071839046 --948.0354125484394,-694.3883813634335,253.70724250706667 --852.7634769326366,-620.6072702997434,-324.2922286093925 --844.2598713872674,-616.6014576767311,822.5395779670221 --961.4017355460305,306.86384834872433,-231.1821381696302 -345.2974788647423,177.3834407268091,-553.0024912907114 -694.418975146777,-16.11923478128665,645.0720378269434 --187.9749276235616,969.3711078304782,540.9787170025927 -931.900410225147,28.652957819717585,-52.61773541859907 -510.9076186505158,760.5825260268605,928.2915917311161 --350.8961879350005,597.409147685278,-578.7088047289267 -91.14869349089054,-640.3037031816017,-305.2052764993223 -862.7167344129184,-707.8186004538279,264.801790270393 -185.90854585480656,-758.5232945820271,-348.04191246237565 -125.96300903053157,-625.6427820230194,601.2473128256308 -944.3130190694997,-570.4812000750559,-626.1760704188482 --90.12985640511079,495.5305542800643,-436.7987795294972 --960.2401826054391,82.44125606578791,913.2011355346153 --217.44628918610886,-159.73089163379916,937.803434228076 -389.21522325345677,438.34384568425025,125.40401074213514 -949.2184217264833,377.7329688511122,790.0655032103389 -398.75773146644224,470.23164968079186,-419.17815571550693 --393.04260397236203,565.9692991520585,-406.5874216602008 -125.54014160306315,-501.2953781865961,633.9667616181389 --778.99729754462,658.8932795233288,205.4596010152036 --626.1809303458454,84.07077101223626,-435.0023263053191 --353.0653305390068,-296.9439168062394,-873.3615060553582 -971.9233688028348,-936.9307437375518,324.9937463685569 --257.54470448513894,292.0205818933978,-287.5034938248324 -347.5012925177175,458.4710189367215,381.10528079928963 --772.0760372836954,313.7864693093693,-440.0249010918054 --942.397258861333,-170.33865622209214,-132.9137943923979 --65.65173329510696,409.6483307814324,-382.31238171508176 --369.4389737921548,-878.8954875174788,373.6424319845919 -135.6521827991678,-301.1497746124239,410.3779578347094 -74.71549845375444,-61.510108258920695,22.649087322252853 -272.696250534113,320.0052091491989,-422.0843617185657 --718.5132732176935,-686.7316376189625,278.78177180600323 -745.7465715342519,-181.00744330889643,-660.9596793410752 -513.2049965877093,664.9789488388972,761.1648862419331 -213.6628578274665,721.4571187761694,-969.1700831031847 --785.528396460953,-814.8478658958024,425.209368509466 --860.8364329128419,-7.271255067385937,-54.58620272742178 --378.59295288351814,740.8103398841997,-659.133596240008 --295.0744312015204,548.3430000458582,-939.1553712134315 -345.9008004927373,632.7954527231411,864.5356776763344 -752.5932809829699,-361.2317663326296,172.7282826459052 --845.4130136990683,-484.25999290398283,-811.5552425049852 --369.62541969207234,750.3744269174579,-305.6663206514147 -123.79620600285284,-133.23830377011836,-82.16695140252943 -939.1441036731164,-407.6910634722841,254.64893904634278 --159.87466084110588,-877.7076379046275,-21.338336751528118 -626.6866580902167,-802.4940626366233,-860.8163052073821 --692.7369592134667,528.8002227786121,447.9907682894759 -130.03553781222104,-63.54719181473524,776.6516294052442 -533.395647666965,623.8845026036104,626.5246027013086 -285.434309491116,-83.97075136810827,729.3555051713008 -852.0148352065014,-952.3879134833139,-896.8902534674974 -917.4865938168746,-445.6787723116105,746.7388792988374 --222.40976207719473,-761.7998847812888,-839.1135995813315 --686.9842018390871,-500.2136102652706,-22.963292138347583 -402.9958011315671,972.7971529705999,-116.98651342165795 -36.36988468621962,43.6314027665112,78.86871097587209 -35.48131420892446,-982.4504898761644,-996.5503557803186 --804.6673637477542,-796.8867931416423,409.79381790959224 --590.1679349680005,789.4282095112258,857.2126591540391 -951.7866757917975,878.1626097740402,-456.2233561629507 -19.55368940702499,-649.090059606118,612.4193103448663 -776.8634102881922,702.5776785950297,-133.26610260633015 -517.347769373562,-804.8416608474611,-919.5104587614986 -506.4728286175218,-149.28945134263256,991.0985294791383 --805.4915682889352,711.2553630704674,-40.03386894201651 -654.3003910077541,634.2545643402898,831.9840027241548 --404.2999774277945,899.5987069240061,-696.6660792847595 --836.0624448130189,-136.76896525530174,656.6459372836853 --53.15773873310877,658.5733550610282,459.3736115886104 --581.1432277221329,897.7632497989275,-878.4376627411932 -796.55941508759,-391.113102019252,0.29616632879856297 --155.29625459853105,-656.3308861661676,-283.7062671966137 --614.1311274144094,-592.2270490789523,-625.8863279472394 --21.96523930681144,595.8627350226311,137.94006752248197 -786.4131771016837,273.08897715344847,378.68023126520893 -335.2144594540064,-101.0816136325177,378.6776444001655 --860.5845070620777,719.7029438313264,555.6242868878346 --509.5400835366424,536.0649085081648,-974.714797199963 --565.5068550382391,-869.7255226582081,560.4538332357893 -511.7483023567743,627.2720476036613,-991.0366133489423 -2.465453356816056,409.67239503467295,-689.1977425219691 -299.5814550252494,-831.7798013806286,-637.3482877913737 --48.4063700107979,307.1303053622041,-708.2617460922079 --629.5533383381241,-591.107265868674,-522.5983906020431 --546.8923029474175,-209.7017830047265,307.5793016734458 --123.93643373106067,551.9478174997762,438.5370118972296 --746.9461719018486,-902.3167533585122,755.8831279992121 --840.3378668742532,-703.3216385605738,-955.7334488837639 -256.67273059730746,164.7411263166971,973.8073328705113 -773.864792634344,-178.31364503818054,-256.82831817493 --406.2959314400298,-695.1861599242372,-723.8326867959819 --735.4325839807891,-771.7704856264429,-518.9759151889261 --386.6627393737672,923.1579420778316,156.94650200377146 -975.1915490265619,-255.06610434865354,-84.74673482111791 --350.8426816694416,-634.2246982068946,-713.6705844448417 -890.1583956156637,973.6213635975114,-910.1810069825369 --699.308250536467,-152.95181539795476,-627.3330473111853 --272.2392127462334,-741.8073002807332,-86.97648655641956 --456.6107676614814,-296.1898884826784,-811.3746970745049 --143.74389857971664,966.5152219231397,-342.33390623761943 -752.85854968487,686.3982832473703,904.1168365944211 -580.219024534189,319.1936541176299,713.1688884549153 --848.7106386853008,-74.33868560238443,978.5124772301176 -539.2003025894644,924.1507560744462,559.2687122669581 -749.7639348842883,413.05926460638193,521.0040088344797 -46.35601967900129,848.4754016282659,650.0778212467233 -687.7699313312644,346.01820192610467,-390.84010582550195 --928.7404092197213,871.3102588190891,172.24069761099372 --403.7140577037195,-701.7297843049244,659.0463310015093 -673.0403888951578,629.015936261063,290.16538393357246 --267.96922481624824,-391.859430439486,-982.8904597636596 -667.2151173764807,-825.134605012715,261.5099960815353 -8.14989368017666,53.378717852702266,853.4256906155467 --936.7699774575158,546.7844492575446,-895.8952032653857 --923.6927881292456,-140.36460371723615,-873.8496513140666 -578.287902585824,59.126187296674516,-941.9224346804511 --918.998627036161,225.33705947895874,612.2236353168098 --124.40093745045283,109.1613430712489,599.658908099803 -221.01234808363824,-550.479524682361,226.1040517389572 -256.5589181304272,468.21396176225335,241.74837511360238 -938.484260916076,-605.423382565863,902.1813591341524 -76.67898070003253,343.912280989824,-801.0768050956203 --238.84811724378596,538.7582929263453,413.82203019798067 --919.7212236691796,93.18852699448917,-823.4436140631811 -991.7128583563247,794.5931770665893,-957.8386791429261 -717.2991578052618,838.8592011168153,-292.9035548730899 -439.0033100955318,-115.7925075844422,310.4649691526881 --319.36519140361713,-354.88152673346326,-151.13222228484187 --708.8644826949976,662.2779288707652,-302.6042092767267 --199.7008921883097,788.1092254042892,-6.752371873657239 -88.50781870172591,912.996249554197,773.4527662899784 --661.066582223121,-53.56994016378985,942.5924548570911 --255.26740354279468,-256.85378296759984,-609.9395364216913 --771.3537717617496,480.6095815119636,540.060937403033 -938.0259270059998,546.836421810726,-513.2950119328026 --919.7668434229691,970.8747687393204,-319.09860891278856 --376.05691513515853,811.9104194987649,170.1997970899722 --570.2576523017308,778.1924854324791,986.7217101094868 --826.6428776983386,724.5032566049745,-218.9686046312121 -48.14489301340882,829.6319515299615,946.7583915502344 --475.67217918240124,-574.2984580801724,-838.9668828169763 -123.59570532427597,-972.7912090986634,-176.2034047801269 --853.2319666959829,-189.548434141332,-920.1356214687814 -670.4345212175378,-580.5220121228683,-343.382579284176 -740.0959932127837,492.53212266441005,-561.923276715883 --856.2011626850078,431.347553710679,-218.59489862378132 -532.1599982364423,-109.41045524957917,-307.99517405544714 --97.58918357520702,497.1179713413535,804.4405730807482 --900.4656068228489,48.223082453910365,-934.3291418322448 --63.180909951282615,770.5656581938008,-276.8194671593807 -864.9008421612864,261.21694330121886,868.3106875860128 -514.3332508250394,-793.1296667024754,-537.6972648746458 --211.65909083298766,-659.786235975848,-10.176790446678979 --57.26368859701881,912.5183960547624,-132.5442342080445 -571.2536085759957,883.8210897029596,753.977661947971 --582.6647509768163,-7.9402114929114305,-304.5204354081485 --200.28260972556905,-278.3863475084976,652.7184203500083 --95.72188975510505,47.388664489376424,964.8947140941493 --880.0414556169671,-24.084720418502457,548.1234138922323 --697.6760836235469,223.0631892295478,-521.0704409310665 -734.8082264491352,-345.8006691998414,-341.87436619818095 -196.387757035787,-632.8741837601826,-430.22272219387787 --166.73629976117695,-292.72427371977926,49.7544360111649 -199.28028813793253,133.3349075003291,308.33662398386446 --384.50096678435955,-747.1475456899439,521.6150828621542 -701.5607652613639,-485.98753555513554,-185.81608768396052 --2.8615660728894454,66.65368550587277,318.9803421753036 --916.7935332893574,442.95416546803403,-876.0579860411794 --63.42286465426423,655.3422711383882,-97.5693734432075 --701.8205024635045,970.0676900119195,778.5709241485265 -542.627266450028,-176.9767942015792,-632.3085462214044 -882.8223628370024,64.7022530342781,704.7109207749702 --315.8099884811485,-329.42336584105885,971.0809613480783 -43.666096989699554,-718.6091522785074,-560.6506440105852 --36.111441214558454,-915.0581790231773,-74.93202924339903 --162.1183158397448,558.672530638974,-290.1160710215165 -965.0975230791987,-638.4601613981938,181.97336993626982 --820.6014059834907,467.7279679879641,989.507376123943 -638.2772755032645,111.4070814406025,-30.517285200615902 -670.0599225336939,871.9481694214485,978.413051596186 --206.92154487103176,981.8349495890245,-688.147495652337 --492.90044813618164,-821.9677505322077,-456.5229670310367 -535.8751032360224,705.8487163568993,557.7852902051434 -262.1315563353926,27.93302504529106,417.4085784272929 --218.33290146555635,682.6167029994037,354.38018795357084 -395.609396988817,71.87198625814244,770.4579684223452 --495.97053264189503,-237.7046932778985,555.2851393553781 --14.502207741324582,778.4280268483817,-307.20136047429537 --261.33966236071046,777.4715787732507,-71.25935963591792 -32.24916840497349,-334.47256932864127,-446.6601156418361 -311.897421676784,-760.3186769175923,758.5452823658186 -558.4062735302157,-618.5034725883945,388.0398916491308 -205.2658425712698,-630.9298985267118,-453.59298789953505 --182.02699253233118,398.4854704909478,277.44681763401195 -64.46969535339576,536.8210862280685,515.8754792123318 -235.71830812451185,573.9801667696504,-331.4732504415816 -762.4990566452111,229.82017160388136,644.7270276248612 -92.55820958056802,-563.1235100226393,84.82025735661728 --257.7766724468238,394.99807207418894,-48.41241653052839 -672.2256098553753,356.14502464383327,369.08886606264787 --565.68933301787,968.4995329825808,683.3504185429774 -578.0097691213891,-339.5695496799451,71.26330569446372 --725.7936238513428,76.95195332541198,-708.2215070334255 -106.07568797920248,297.4437603098113,-219.60806550019527 --2.910243337413476,751.3067753491719,-782.8737105943812 -583.4657859993058,-658.4908980076073,-926.5840343907432 --628.8507945099045,530.0863799409794,-189.74785332627994 -745.041033692364,49.4150823645316,-955.4992961473381 -433.4272192038536,-779.5341825575346,578.7592669238488 --663.7949003896399,-309.1072283889731,522.5428592507205 -908.4627149528433,-257.1320987065353,658.8004403978716 --618.4154690483226,614.3595404049822,314.98811851250207 --614.5129855752632,-394.9920792971768,-736.458222805928 --234.06597787137343,-592.7027177534452,287.995907260947 -989.0102084411174,-975.9816738314718,81.83962657459733 -147.33319509801936,828.4175793616237,12.010669533875102 -87.4028392898349,-56.69439734322282,-462.1913908770372 --887.9417335021726,-182.68463558032772,-894.817057518643 -100.98493893183559,-385.41271351541377,67.20480305085562 --731.4060712096266,865.2599314787192,789.0424870998697 --620.006981595431,-313.1114334119802,226.98554370395914 --808.6275853881875,-290.8643577676984,-497.7754263619878 -831.0334574333933,705.0212725784104,159.66548253372753 -40.69267374314836,861.4515890907944,864.8555659576307 -938.6602507033208,-749.2422317836247,-678.8843784736596 -353.47339735977334,82.86895321968973,-963.068190213528 --876.0499280209613,776.1607645176102,737.7415910787727 --285.4581560079097,782.1012338610694,187.35014879580353 -611.8112940378037,-145.13785767957143,-773.2033453101825 --132.54587470796753,-85.40040400620421,101.88838768120604 --788.8345741911439,982.8037260992228,-511.7263583861873 --602.8951929258142,53.605837711873164,74.41635878977718 --120.35852433351147,543.7842926505091,33.30880145720539 -219.39091028996836,447.49277081557125,-949.9497968722668 -141.28836509008966,768.3889424567385,-965.2225141491322 --189.6357923980778,852.45490041166,-293.69119543492434 --82.54235159951827,963.0827860886254,-601.3522820988524 --869.4896217499881,718.8451817226087,736.9306824247369 --55.84433063997358,28.41434895457246,671.612739235672 -477.11899623159024,-469.7019955659787,-966.2132898569631 --40.599674932908556,717.8246521912827,791.6693533803243 -912.4523941523078,759.1264752255624,160.08711059619668 --110.78880152779823,549.699693068198,479.64326873119285 -76.28686016290885,-825.3452548830618,852.1626935738375 --88.79492499667572,-273.3324361674714,259.13479033754334 -347.67592233395385,-578.6241659393971,673.8776896199124 --420.12581267524433,-626.6321481713666,-187.2002942910052 -461.1201617949305,930.9163568796068,618.5625287428663 -880.6967553403836,-718.7883918469464,-857.6464022726465 -115.40952381334228,-419.40503391193124,656.1099459385457 -343.9757428046521,941.4563279715887,-490.4152885373916 --28.431771289535277,2.480954850706553,-521.6464102852476 -180.18679897601555,-113.42802784152093,-106.55688802025281 --274.5267040550327,-966.1412951489299,44.19047382957797 --329.5043285993378,-997.3602620313407,-384.11258467613595 --442.743333820486,-213.10369355272837,-736.2960207132061 -15.36764927016884,384.88070503626,260.371138109145 -607.5098951383814,-95.98342402583773,38.1834606794564 -620.8038817179665,-144.59765836152292,403.19869979919395 --130.7952625640163,-164.5276109768747,520.4112490583207 --650.3261690675777,-322.82805611685285,-551.6554465061965 --281.78011406480573,-539.2503552679519,158.8112621733094 -596.3416052356904,573.2261224358037,-270.99807090241507 -977.5208117885234,187.70872941160155,-201.19939644341048 -671.0785584828509,459.74802528528176,498.5506736482089 --607.7213005322568,-63.35138526288972,723.6562616492056 -8.076015257514541,366.9054868421006,175.8674660685292 -684.7135754367641,-430.8783204767948,150.95055577272979 --753.5306639803921,380.42155339893566,463.93567670542416 --914.3253576220031,351.5819272559702,-170.61969166842732 --751.8062477806353,-160.18490460306475,-611.5341406088367 --168.88093575336688,-231.32194408294458,476.78327387211493 -548.4311163327175,214.05730876909342,-954.6263156351049 -862.0445581419881,372.46656019289526,-931.6091001576224 -637.6657984282356,-599.4676905640077,158.44237914221367 --66.73126009962573,-160.32243528984668,779.4274402487952 --125.27741687477055,-849.3117648536985,893.2774544299052 -841.0704624792552,368.86537916319753,-64.2149437359501 --814.2810541129575,581.4962371549523,-849.0441711519421 --862.7980302097087,74.76768487873619,-679.7435196307196 --984.539465319302,-153.7731380084275,-725.5655367798681 --678.9691694386175,-846.1787225293307,-589.8124925527801 -430.96835954877884,617.8546144355828,-94.9327119413988 -13.107631762835354,-934.6899308115948,-861.3674772573663 --484.8645487009662,87.79684142629503,479.10229746998584 -210.00612267606607,-215.74429002642353,-763.3518539937236 -561.5464697743789,-272.4278968018858,472.10802896557925 -25.957683828683685,477.3241071236505,814.5791229051438 -842.059032107604,70.21356000120682,23.01672953127752 --468.6430689943255,871.5996630585828,-84.16166560075817 --744.8175214252457,-134.59017074690018,-745.8934995239921 -5.06336851415017,122.55102971242445,-324.4884770128293 --856.6987715370307,887.0070712664781,546.7062269668593 -677.7621610102419,-266.26321142754114,521.662060038901 --29.254209661611526,-597.8330231879081,-751.1532461855734 --309.89826135588623,-724.8957770497207,996.5379524081372 --901.6220195359559,-117.71280126184695,-95.81295521923175 --398.7361428366489,142.7031314138908,-700.0459516969106 -567.8247611744673,-335.1045635047234,182.68517959728342 -431.27847213391874,778.0842353803223,671.5748729044003 -216.61805620711925,-223.21363923222611,6.409340149927857 -537.4695867576052,755.091085118946,-792.4361436466563 --230.28747501389307,552.2331968270012,-136.696474812078 --335.5444718674323,-177.35460635346078,205.68949357270162 -999.610288267603,-14.015141790936468,-583.0110500914789 --674.3068494418105,-915.3005050471714,117.6344698366429 -89.14418297766838,-589.5321464393817,390.658812905134 -482.2140832593616,-481.8035892357775,-311.8004719405269 -980.9433446945134,-251.4710642985316,521.6033435122035 --94.54914674012002,586.6896557219518,538.0464775652958 -335.5120503970711,709.5566925911585,878.4369897553704 -159.9666409041679,-525.0621855545086,-202.7420767118499 -516.6114270265864,301.766970247739,-644.4033228695025 --897.5209177071506,365.9231870841297,-497.84195194130933 diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/AdjacentClasses.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/AdjacentClasses.mls index bbc6aa4c72..31b8773fb5 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/AdjacentClasses.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/AdjacentClasses.mls @@ -6,6 +6,6 @@ module AdjacentClasses with class D() with () fun f() = - let {obj_13} - obj_13 = new C(1) - obj_13 \ No newline at end of file + let {obj_11} + obj_11 = new C(1) + obj_11 \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls index e831ab6cfa..2b1f62bfb3 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls @@ -69,13 +69,13 @@ module CombinedModule with module LinkingGeneratedClasses with class D fun f() = + let {obj_4} + obj_4 = new! LinkingGeneratedClasses__Legacy."Function$$LinkingGeneratedClasses"() + obj_4 + fun g() = let {obj_5} - obj_5 = new! LinkingGeneratedClasses__Legacy."Function$$LinkingGeneratedClasses"() + obj_5 = new! LinkingGeneratedClasses__Legacy."Function$1$LinkingGeneratedClasses"() obj_5 - fun g() = - let {obj_7} - obj_7 = new! LinkingGeneratedClasses__Legacy."Function$1$LinkingGeneratedClasses"() - obj_7 fun test1 = let {obj_1} obj_1 = new! LinkingGeneratedClasses__Legacy."C$LinkingGeneratedClasses"() diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls index 47ecd40b8a..bacd42b125 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls @@ -6,13 +6,13 @@ class S with module LinkingGeneratedClasses with class D fun f() = + let {obj_4} + obj_4 = new! LinkingGeneratedClasses__Legacy."Function$$LinkingGeneratedClasses"() + obj_4 + fun g() = let {obj_5} - obj_5 = new! LinkingGeneratedClasses__Legacy."Function$$LinkingGeneratedClasses"() + obj_5 = new! LinkingGeneratedClasses__Legacy."Function$1$LinkingGeneratedClasses"() obj_5 - fun g() = - let {obj_7} - obj_7 = new! LinkingGeneratedClasses__Legacy."Function$1$LinkingGeneratedClasses"() - obj_7 fun test1 = let {obj_2} obj_2 = new! LinkingGeneratedClasses__Legacy."C$LinkingGeneratedClasses"() diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls index baf183b742..d9e6051e95 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls @@ -18,9 +18,9 @@ module StagedClass with class C() with () fun h() = - let {obj_8} - obj_8 = new D() - obj_8 + let {obj_6} + obj_6 = new D() + obj_6 class X(val x) with () fun f(y) = @@ -38,9 +38,9 @@ module StagedClass with tmp2 = x + y StagedClass.helpFoo(tmp2) private fun f_X_sp_0(y) = - let {obj_11} - obj_11 = new Bar(0) - obj_11 + let {obj_9} + obj_9 = new Bar(0) + obj_9 fun bar(b) = if b is true then Bar(0) @@ -63,15 +63,15 @@ module StagedClass with y4 + 1 else -1 fun foo() = - let {obj_9} - obj_9 = new Foo() - obj_9 + let {obj_7} + obj_7 = new Foo() + obj_7 fun g() = - let {obj_10} - obj_10 = new D() - obj_10 + let {obj_8} + obj_8 = new D() + obj_8 fun helpFoo(x) = StagedClass__Legacy."Helper$StagedClass".foo(x) fun xx() = - let {obj_12} - obj_12 = new Bar(0) - obj_12 \ No newline at end of file + let {obj_10} + obj_10 = new Bar(0) + obj_10 \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls index 58107ef3e8..6319c3252b 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls @@ -1,1285 +1,3883 @@ #config(noFreeze: true, noModuleCheck: true, deadParamElim: Some(DeadParamElim(debug: false, mono: true))) import "../Transform3D.mls" as Transform3D__Legacy module Transform3D with - () + class Matrix(val arr, val r, val c) fun ident(w) = - let {m5} - m5 = zeros(w, w) - iterID(m5, w, w) + let {m3} + m3 = zeros(w, w) + iterID_Transform3D_sp_0(m3, w, w) fun iter(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = >(k, 0) if scrut is true then - tmp = colX - k - tmp1 = colX - k - tmp2 = *(x.(i).(tmp), y.(tmp1).(j)) - tmp3 = sum + tmp2 - tmp4 = k - 1 - iter(tmp3, x, y, colX, i, j, tmp4) + tmp = *(i, x.c) + tmp1 = tmp + colX + tmp2 = tmp1 - k + tmp3 = colX - k + tmp4 = *(tmp3, y.c) + tmp5 = tmp4 + j + tmp6 = *(x.arr.(tmp2), y.arr.(tmp5)) + tmp7 = sum + tmp6 + tmp8 = k - 1 + iter(tmp7, x, y, colX, i, j, tmp8) else sum fun iterCol(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = ===(j, 0) if scrut1 is true then m else - tmp5 = colY - j - tmp6 = colY - j - tmp7 = iter_Transform3D_sp_0(0, x, y, colX, i, tmp6, colX) - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(m, i, tmp5, tmp7) - tmp9 = j - 1 - iterCol(tmp8, x, y, colX, colY, i, tmp9) + tmp9 = colY - j + tmp10 = colY - j + tmp11 = iter_Transform3D_sp_0(0, x, y, colX, i, tmp10, colX) + tmp12 = update(m, i, tmp9, tmp11) + tmp13 = j - 1 + iterCol_Transform3D_sp_0(tmp12, x, y, colX, colY, i, tmp13) fun iterID(m, w, i) = - let {scrut4, tmp17, tmp18, tmp19, tmp20} - scrut4 = ===(i, 0) - if scrut4 is + let {scrut3, tmp17, tmp18, tmp19, tmp20} + scrut3 = ===(i, 0) + if scrut3 is true then m else tmp17 = w - i tmp18 = w - i - tmp19 = Transform3D__Legacy."Mx$Transform3D".set2D(m, tmp17, tmp18, 1) + tmp19 = update_Transform3D_sp_1(m, tmp17, tmp18, 1) tmp20 = i - 1 - iterID(tmp19, w, tmp20) - fun iterInit(m, r, c, i) = - let {scrut3, tmp13, tmp14, tmp15, tmp16} - scrut3 = ===(i, 0) - if scrut3 is - true then m - else - tmp13 = r - i - tmp14 = Transform3D__Legacy."Mx$Transform3D".init(c, 0) - tmp15 = Transform3D__Legacy."Mx$Transform3D".set1D(m, tmp13, tmp14) - tmp16 = i - 1 - iterInit(tmp15, r, c, tmp16) + iterID_Transform3D_sp_0(tmp19, w, tmp20) fun iterRow(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp10, tmp11, tmp12} + let {scrut2, tmp14, tmp15, tmp16} scrut2 = ===(i, 0) if scrut2 is true then m else - tmp10 = rowX - i - tmp11 = iterCol(m, x, y, colX, colY, tmp10, colY) - tmp12 = i - 1 - iterRow(tmp11, x, y, rowX, colX, colY, tmp12) + tmp14 = rowX - i + tmp15 = iterCol(m, x, y, colX, colY, tmp14, colY) + tmp16 = i - 1 + iterRow(tmp15, x, y, rowX, colX, colY, tmp16) fun model(local, position, scaling, rotation) = - let {rot, res1, tmp43, tmp44, tmp45, tmp46, tmp47, tmp48, tmp49, tmp50, tmp51, tmp52, tmp53, tmp54, tmp55, tmp56, tmp57, tup_216, tup_217, tup_218, tup_219, tup_220} - tmp43 = rotateZ(rotation.2) - tmp44 = rotateY(rotation.1) - tmp45 = rotateX(rotation.0) - tup_216 = [1, 0, 0, 0] - tup_217 = [0, 1, 0, 0] - tup_218 = [0, 0, 1, 0] - tup_219 = [0, 0, 0, 1] - tup_220 = [tup_216, tup_217, tup_218, tup_219] - tmp46 = tup_220 - tmp47 = multiply_Transform3D_sp_0(tmp45, tmp46) - tmp48 = multiply(tmp44, tmp47) - rot = multiply(tmp43, tmp48) - tmp49 = transform(position.0, position.1, position.2) - tmp50 = scale(scaling.0, scaling.1, scaling.2) - tmp51 = [local.0] - tmp52 = [local.1] - tmp53 = [local.2] - tmp54 = [1] - tmp55 = [tmp51, tmp52, tmp53, tmp54] - tmp56 = multiply_Transform3D_sp_1(tmp50, tmp55) - tmp57 = multiply(rot, tmp56) - res1 = multiply(tmp49, tmp57) - [res1.0, res1.1, res1.2] + let {rot, res1, tmp47, tmp48, tmp49, tmp50, tmp51, tmp52, tmp53, tmp54, tmp55, tmp56, tmp57, tmp58} + tmp47 = rotateZ(rotation.2) + tmp48 = rotateY(rotation.1) + tmp49 = rotateX(rotation.0) + tmp50 = ident_Transform3D_sp_0(4) + tmp51 = multiply_Transform3D_sp_0(tmp49, tmp50) + tmp52 = multiply_Transform3D_sp_1(tmp48, tmp51) + rot = multiply_Transform3D_sp_1(tmp47, tmp52) + tmp53 = transform(position.0, position.1, position.2) + tmp54 = scale(scaling.0, scaling.1, scaling.2) + tmp55 = [local.0, local.1, local.2, 1] + tmp56 = new Matrix(tmp55, 4, 1) + tmp57 = multiply_Transform3D_sp_2(tmp54, tmp56) + tmp58 = multiply_Transform3D_sp_3(rot, tmp57) + res1 = multiply_Transform3D_sp_3(tmp53, tmp58) + [res1.arr.0, res1.arr.1, res1.arr.2] fun model0(local) = - let {tmp58, tmp59, tmp60, tmp61} - tmp58 = [11, 4, 51] - tmp59 = [0.4, 0.19, 0.19] - tmp60 = 2.51327412 - tmp61 = [tmp60, 3.1415926535, 0] - model_Transform3D_sp_0(local, tmp58, tmp59, tmp61) + let {tmp59, tmp60, tmp61, tmp62} + tmp59 = [11, 4, 51] + tmp60 = [0.4, 0.19, 0.19] + tmp61 = 2.51327412 + tmp62 = [tmp61, 3.1415926535, 0] + model_Transform3D_sp_0(local, tmp59, tmp60, tmp62) + fun moveBy(v, dx, dy, dz) = + let {m5, tmp63, tmp64} + m5 = transform(dx, dy, dz) + tmp63 = [v.0, v.1, v.2, 1] + tmp64 = new Matrix(tmp63, 4, 1) + multiply_Transform3D_sp_2(m5, tmp64) fun multiply(x, y) = - let {rowX1, colX3, rowY, colY2, res} - rowX1 = x.length - colX3 = x.0.length - rowY = y.length - colY2 = y.0.length - res = zeros(rowX1, colY2) - iterRow(res, x, y, rowX1, colX3, colY2, rowX1) + let {res} + res = zeros(x.r, y.c) + iterRow_Transform3D_sp_0(res, x, y, x.r, x.c, y.c, x.r) fun rotateX(angle) = - let {s, c2, tmp28, tmp29, tmp30, tmp31, tmp32, tup_196, tup_197, tup_198, tup_199, tup_200} + let {s, c2, tmp32, tmp33, tmp34, tmp35, tmp36} s = globalThis.Math.sin(angle) c2 = globalThis.Math.cos(angle) - tup_196 = [1, 0, 0, 0] - tup_197 = [0, 1, 0, 0] - tup_198 = [0, 0, 1, 0] - tup_199 = [0, 0, 0, 1] - tup_200 = [tup_196, tup_197, tup_198, tup_199] - tmp28 = tup_200 - tmp29 = update_Transform3D_sp_6(tmp28, 1, 1, c2) - tmp30 = -(s) - tmp31 = update_Transform3D_sp_7(tmp29, 1, 2, tmp30) - tmp32 = update_Transform3D_sp_8(tmp31, 2, 1, s) - update_Transform3D_sp_5(tmp32, 2, 2, c2) + tmp32 = ident_Transform3D_sp_0(4) + tmp33 = update_Transform3D_sp_13(tmp32, 1, 1, c2) + tmp34 = -(s) + tmp35 = update_Transform3D_sp_14(tmp33, 1, 2, tmp34) + tmp36 = update_Transform3D_sp_15(tmp35, 2, 1, s) + update_Transform3D_sp_12(tmp36, 2, 2, c2) fun rotateY(angle) = - let {s1, c3, tmp33, tmp34, tmp35, tmp36, tmp37, tup_206, tup_207, tup_208, tup_209, tup_210} + let {s1, c3, tmp37, tmp38, tmp39, tmp40, tmp41} s1 = globalThis.Math.sin(angle) c3 = globalThis.Math.cos(angle) - tup_206 = [1, 0, 0, 0] - tup_207 = [0, 1, 0, 0] - tup_208 = [0, 0, 1, 0] - tup_209 = [0, 0, 0, 1] - tup_210 = [tup_206, tup_207, tup_208, tup_209] - tmp33 = tup_210 - tmp34 = update_Transform3D_sp_3(tmp33, 0, 0, c3) - tmp35 = update_Transform3D_sp_9(tmp34, 0, 2, s1) - tmp36 = -(s1) - tmp37 = update_Transform3D_sp_10(tmp35, 2, 0, tmp36) - update_Transform3D_sp_5(tmp37, 2, 2, c3) + tmp37 = ident_Transform3D_sp_0(4) + tmp38 = update_Transform3D_sp_10(tmp37, 0, 0, c3) + tmp39 = update_Transform3D_sp_16(tmp38, 0, 2, s1) + tmp40 = -(s1) + tmp41 = update_Transform3D_sp_17(tmp39, 2, 0, tmp40) + update_Transform3D_sp_12(tmp41, 2, 2, c3) fun rotateZ(angle) = - let {s2, c4, tmp38, tmp39, tmp40, tmp41, tmp42, tup_211, tup_212, tup_213, tup_214, tup_215} + let {s2, c4, tmp42, tmp43, tmp44, tmp45, tmp46} s2 = globalThis.Math.sin(angle) c4 = globalThis.Math.cos(angle) - tup_211 = [1, 0, 0, 0] - tup_212 = [0, 1, 0, 0] - tup_213 = [0, 0, 1, 0] - tup_214 = [0, 0, 0, 1] - tup_215 = [tup_211, tup_212, tup_213, tup_214] - tmp38 = tup_215 - tmp39 = update_Transform3D_sp_3(tmp38, 0, 0, c4) - tmp40 = -(s2) - tmp41 = update_Transform3D_sp_11(tmp39, 0, 1, tmp40) - tmp42 = update_Transform3D_sp_12(tmp41, 1, 0, s2) - update_Transform3D_sp_4(tmp42, 1, 1, c4) + tmp42 = ident_Transform3D_sp_0(4) + tmp43 = update_Transform3D_sp_10(tmp42, 0, 0, c4) + tmp44 = -(s2) + tmp45 = update_Transform3D_sp_18(tmp43, 0, 1, tmp44) + tmp46 = update_Transform3D_sp_19(tmp45, 1, 0, s2) + update_Transform3D_sp_11(tmp46, 1, 1, c4) fun scale(sx, sy, sz) = - let {tmp25, tmp26, tmp27, tup_186, tup_187, tup_188, tup_189, tup_190} - tup_186 = [1, 0, 0, 0] - tup_187 = [0, 1, 0, 0] - tup_188 = [0, 0, 1, 0] - tup_189 = [0, 0, 0, 1] - tup_190 = [tup_186, tup_187, tup_188, tup_189] - tmp25 = tup_190 - tmp26 = update_Transform3D_sp_3(tmp25, 0, 0, sx) - tmp27 = update_Transform3D_sp_4(tmp26, 1, 1, sy) - update_Transform3D_sp_5(tmp27, 2, 2, sz) + let {tmp29, tmp30, tmp31} + tmp29 = ident_Transform3D_sp_0(4) + tmp30 = update_Transform3D_sp_10(tmp29, 0, 0, sx) + tmp31 = update_Transform3D_sp_11(tmp30, 1, 1, sy) + update_Transform3D_sp_12(tmp31, 2, 2, sz) fun transform(dx, dy, dz) = - let {tmp22, tmp23, tmp24, tup_176, tup_177, tup_178, tup_179, tup_180} - tup_176 = [1, 0, 0, 0] - tup_177 = [0, 1, 0, 0] - tup_178 = [0, 0, 1, 0] - tup_179 = [0, 0, 0, 1] - tup_180 = [tup_176, tup_177, tup_178, tup_179] - tmp22 = tup_180 - tmp23 = update_Transform3D_sp_0(tmp22, 0, 3, dx) - tmp24 = update_Transform3D_sp_1(tmp23, 1, 3, dy) - update_Transform3D_sp_2(tmp24, 2, 3, dz) - fun update(m, i, j, v) = Transform3D__Legacy."Mx$Transform3D".set2D(m, i, j, v) + let {tmp26, tmp27, tmp28} + tmp26 = ident_Transform3D_sp_0(4) + tmp27 = update_Transform3D_sp_7(tmp26, 0, 3, dx) + tmp28 = update_Transform3D_sp_8(tmp27, 1, 3, dy) + update_Transform3D_sp_9(tmp28, 2, 3, dz) + fun update(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = *(i, m.c) + tmp24 = tmp23 + j + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, tmp24, v) + new Matrix(tmp25, m.r, m.c) fun zeros(r, c) = - let {m4, tmp21, tup_1} - tmp21 = [] - tup_1 = [] - m4 = Transform3D__Legacy."Mx$Transform3D".init(r, tup_1) - iterInit(m4, r, c, r) + let {tmp21, tmp22} + tmp21 = *(r, c) + tmp22 = Transform3D__Legacy."Mx$Transform3D".init(tmp21, 0) + new Matrix(tmp22, r, c) private fun ident_Transform3D_sp_0(w) = - let {tup_171, tup_172, tup_173, tup_174, tup_175} - tup_171 = [1, 0, 0, 0] - tup_172 = [0, 1, 0, 0] - tup_173 = [0, 0, 1, 0] - tup_174 = [0, 0, 0, 1] - tup_175 = [tup_171, tup_172, tup_173, tup_174] - tup_175 + let {tup_26, obj_27} + tup_26 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_27 = new Matrix(tup_26, 4, 4) + obj_27 private fun iterCol_Transform3D_sp_0(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} - scrut1 = false - tmp5 = 0 - tmp6 = 0 - tmp7 = iter_Transform3D_sp_1(0, x, y, colX, i, tmp6, colX) - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(m, i, 0, tmp7) - tmp9 = 3 - iterCol_Transform3D_sp_1(tmp8, x, y, colX, colY, i, tmp9) + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = ===(j, 0) + if scrut1 is + true then m + else + tmp9 = colY - j + tmp10 = colY - j + tmp11 = iter_Transform3D_sp_0(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_0(m, i, tmp9, tmp11) + tmp13 = j - 1 + iterCol_Transform3D_sp_0(tmp12, x, y, colX, colY, i, tmp13) private fun iterCol_Transform3D_sp_1(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = false - tmp5 = 1 - tmp6 = 1 - tmp7 = iter_Transform3D_sp_3(0, x, y, colX, i, tmp6, colX) - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(m, i, 1, tmp7) - tmp9 = 2 - iterCol_Transform3D_sp_2(tmp8, x, y, colX, colY, i, tmp9) + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_1(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_20(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_2(tmp12, x, y, colX, colY, i, tmp13) private fun iterCol_Transform3D_sp_10(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = true m private fun iterCol_Transform3D_sp_11(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = false - tmp5 = 0 - tmp6 = 0 - tmp7 = iter_Transform3D_sp_21(0, x, y, colX, i, tmp6, colX) - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(m, 2, 0, tmp7) tmp9 = 0 - iterCol_Transform3D_sp_12(tmp8, x, y, colX, colY, i, tmp9) + tmp10 = 0 + tmp11 = iter_Transform3D_sp_41(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_17(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_12(tmp12, x, y, colX, colY, i, tmp13) private fun iterCol_Transform3D_sp_12(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} - scrut1 = true - m + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_46(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_15(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_13(tmp12, x, y, colX, colY, i, tmp13) private fun iterCol_Transform3D_sp_13(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = false - tmp5 = 0 - tmp6 = 0 - tmp7 = 1 - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(m, 3, 0, 1) - tmp9 = 0 - iterCol_Transform3D_sp_14(tmp8, x, y, colX, colY, i, tmp9) + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_51(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_12(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_14(tmp12, x, y, colX, colY, i, tmp13) private fun iterCol_Transform3D_sp_14(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_56(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_9(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_15(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_15(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = true m - private fun iterCol_Transform3D_sp_15(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} - scrut1 = ===(j, 0) - if scrut1 is - true then m - else - tmp5 = colY - j - tmp6 = colY - j - tmp7 = iter_Transform3D_sp_31(0, x, y, colX, i, tmp6, colX) - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(m, 0, tmp5, tmp7) - tmp9 = j - 1 - iterCol_Transform3D_sp_15(tmp8, x, y, colX, colY, i, tmp9) private fun iterCol_Transform3D_sp_16(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} - scrut1 = ===(j, 0) - if scrut1 is - true then m - else - tmp5 = colY - j - tmp6 = colY - j - tmp7 = iter_Transform3D_sp_36(0, x, y, colX, i, tmp6, colX) - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(m, 1, tmp5, tmp7) - tmp9 = j - 1 - iterCol_Transform3D_sp_16(tmp8, x, y, colX, colY, i, tmp9) + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_61(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_22(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_17(tmp12, x, y, colX, colY, i, tmp13) private fun iterCol_Transform3D_sp_17(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} - scrut1 = ===(j, 0) - if scrut1 is - true then m - else - tmp5 = colY - j - tmp6 = colY - j - tmp7 = iter_Transform3D_sp_41(0, x, y, colX, i, tmp6, colX) - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(m, 2, tmp5, tmp7) - tmp9 = j - 1 - iterCol_Transform3D_sp_17(tmp8, x, y, colX, colY, i, tmp9) + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_66(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_23(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_18(tmp12, x, y, colX, colY, i, tmp13) private fun iterCol_Transform3D_sp_18(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} - scrut1 = ===(j, 0) - if scrut1 is - true then m - else - tmp5 = colY - j - tmp6 = colY - j - tmp7 = iter_Transform3D_sp_46(0, x, y, colX, i, tmp6, colX) - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(m, 3, tmp5, tmp7) - tmp9 = j - 1 - iterCol_Transform3D_sp_18(tmp8, x, y, colX, colY, i, tmp9) + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_71(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_24(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_19(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_19(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_76(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_25(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_20(tmp12, x, y, colX, colY, i, tmp13) private fun iterCol_Transform3D_sp_2(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_6(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_18(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_3(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_20(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_21(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_81(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_20(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_22(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_22(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_86(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_18(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_23(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_23(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_91(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_16(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_24(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_24(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_96(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_21(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_25(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_25(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_26(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_101(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_19(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_27(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_27(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = false - tmp5 = 2 - tmp6 = 2 - tmp7 = iter_Transform3D_sp_5(0, x, y, colX, i, tmp6, colX) - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(m, i, 2, tmp7) tmp9 = 1 - iterCol_Transform3D_sp_3(tmp8, x, y, colX, colY, i, tmp9) + tmp10 = 1 + tmp11 = iter_Transform3D_sp_106(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_11(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_28(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_28(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_111(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_14(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_29(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_29(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_116(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_8(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_30(tmp12, x, y, colX, colY, i, tmp13) private fun iterCol_Transform3D_sp_3(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_11(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_16(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_4(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_30(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_31(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_121(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_17(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_32(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_32(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_126(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_15(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_33(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_33(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_131(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_12(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_34(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_34(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_136(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_9(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_35(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_35(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_36(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = false - tmp5 = 3 - tmp6 = 3 - tmp7 = iter_Transform3D_sp_7(0, x, y, colX, i, tmp6, colX) - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(m, i, 3, tmp7) tmp9 = 0 - iterCol_Transform3D_sp_4(tmp8, x, y, colX, colY, i, tmp9) + tmp10 = 0 + tmp11 = iter_Transform3D_sp_141(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_22(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_37(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_37(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_146(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_23(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_38(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_38(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_151(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_24(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_39(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_39(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_156(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_25(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_40(tmp12, x, y, colX, colY, i, tmp13) private fun iterCol_Transform3D_sp_4(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_16(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_21(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_5(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_40(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = true m - private fun iterCol_Transform3D_sp_5(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} + private fun iterCol_Transform3D_sp_41(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = false - tmp5 = 0 - tmp6 = 0 - tmp7 = iter_Transform3D_sp_9(0, x, y, colX, i, tmp6, colX) - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(m, i, 0, tmp7) tmp9 = 0 - iterCol_Transform3D_sp_6(tmp8, x, y, colX, colY, i, tmp9) - private fun iterCol_Transform3D_sp_6(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} + tmp10 = 0 + tmp11 = iter_Transform3D_sp_161(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_26(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_42(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_42(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = true m - private fun iterCol_Transform3D_sp_7(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9, tup_501, tup_502, tup_503, tup_504, tup_505} + private fun iterCol_Transform3D_sp_43(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = false - tmp5 = 0 - tmp6 = 0 - tmp7 = iter_Transform3D_sp_11(0, x, y, colX, i, tmp6, colX) - tup_501 = [0] - tup_502 = [0] - tup_503 = [0] - tup_504 = [0] - tup_505 = [tup_501, tup_502, tup_503, tup_504] - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(tup_505, 0, 0, tmp7) tmp9 = 0 - iterCol_Transform3D_sp_8(tmp8, x, y, colX, colY, i, tmp9) - private fun iterCol_Transform3D_sp_8(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} + tmp10 = 0 + tmp11 = iter_Transform3D_sp_166(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_27(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_44(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_44(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = true m - private fun iterCol_Transform3D_sp_9(m, x, y, colX, colY, i, j) = - let {scrut1, tmp5, tmp6, tmp7, tmp8, tmp9} + private fun iterCol_Transform3D_sp_45(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = false - tmp5 = 0 - tmp6 = 0 - tmp7 = iter_Transform3D_sp_16(0, x, y, colX, i, tmp6, colX) - tmp8 = Transform3D__Legacy."Mx$Transform3D".set2D(m, 1, 0, tmp7) tmp9 = 0 - iterCol_Transform3D_sp_10(tmp8, x, y, colX, colY, i, tmp9) - private fun iterID_Transform3D_sp_0(m, w, i) = - let {tup_161, tup_162, tup_163, tup_164, tup_165} - tup_161 = [1, 0, 0, 0] - tup_162 = [0, 1, 0, 0] - tup_163 = [0, 0, 1, 0] - tup_164 = [0, 0, 0, 1] - tup_165 = [tup_161, tup_162, tup_163, tup_164] - tup_165 - private fun iterID_Transform3D_sp_1(m, w, i) = - let {tup_151, tup_152, tup_153, tup_154, tup_155} - tup_151 = [1, 0, 0, 0] - tup_152 = [0, 1, 0, 0] - tup_153 = [0, 0, 1, 0] - tup_154 = [0, 0, 0, 1] - tup_155 = [tup_151, tup_152, tup_153, tup_154] - tup_155 - private fun iterID_Transform3D_sp_2(m, w, i) = - let {tup_141, tup_142, tup_143, tup_144, tup_145} - tup_141 = [1, 0, 0, 0] - tup_142 = [0, 1, 0, 0] - tup_143 = [0, 0, 1, 0] - tup_144 = [0, 0, 0, 1] - tup_145 = [tup_141, tup_142, tup_143, tup_144] - tup_145 - private fun iterID_Transform3D_sp_3(m, w, i) = - let {tup_131, tup_132, tup_133, tup_134, tup_135} - tup_131 = [1, 0, 0, 0] - tup_132 = [0, 1, 0, 0] - tup_133 = [0, 0, 1, 0] - tup_134 = [0, 0, 0, 1] - tup_135 = [tup_131, tup_132, tup_133, tup_134] - tup_135 - private fun iterID_Transform3D_sp_4(m, w, i) = - let {tup_121, tup_122, tup_123, tup_124, tup_125} - tup_121 = [1, 0, 0, 0] - tup_122 = [0, 1, 0, 0] - tup_123 = [0, 0, 1, 0] - tup_124 = [0, 0, 0, 1] - tup_125 = [tup_121, tup_122, tup_123, tup_124] - tup_125 - private fun iterInit_Transform3D_sp_0(m, r, c, i) = - let {tup_76, tup_77, tup_78, tup_79, tup_80} - tup_76 = [0, 0, 0, 0] - tup_77 = [0, 0, 0, 0] - tup_78 = [0, 0, 0, 0] - tup_79 = [0, 0, 0, 0] - tup_80 = [tup_76, tup_77, tup_78, tup_79] - tup_80 - private fun iterInit_Transform3D_sp_1(m, r, c, i) = - let {tup_66, tup_67, tup_68, tup_69, tup_70} - tup_66 = [0, 0, 0, 0] - tup_67 = [0, 0, 0, 0] - tup_68 = [0, 0, 0, 0] - tup_69 = [0, 0, 0, 0] - tup_70 = [tup_66, tup_67, tup_68, tup_69] - tup_70 - private fun iterInit_Transform3D_sp_10(m, r, c, i) = - let {tup_451, tup_452, tup_453, tup_454, tup_455} - tup_451 = [0] - tup_452 = [0] - tup_453 = [0] - tup_454 = [0] - tup_455 = [tup_451, tup_452, tup_453, tup_454] - tup_455 - private fun iterInit_Transform3D_sp_11(m, r, c, i) = - let {tup_441, tup_442, tup_443, tup_444, tup_445} - tup_441 = [0] - tup_442 = [0] - tup_443 = [0] - tup_444 = [0] - tup_445 = [tup_441, tup_442, tup_443, tup_444] - tup_445 - private fun iterInit_Transform3D_sp_12(m, r, c, i) = - let {scrut3, tmp13, tmp14, tmp15, tmp16, tup_511, tup_512, tup_513, tup_514, tup_515} - scrut3 = false + tmp10 = 0 + tmp11 = iter_Transform3D_sp_171(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_28(m, i, tmp9, tmp11) tmp13 = 0 - tmp14 = Transform3D__Legacy."Mx$Transform3D".init(c, 0) - tup_511 = [] - tup_512 = [] - tup_513 = [] - tup_514 = [] - tup_515 = [tup_511, tup_512, tup_513, tup_514] - tmp15 = Transform3D__Legacy."Mx$Transform3D".set1D(tup_515, 0, tmp14) - tmp16 = 3 - iterInit_Transform3D_sp_13(tmp15, r, c, tmp16) - private fun iterInit_Transform3D_sp_13(m, r, c, i) = - let {scrut3, tmp13, tmp14, tmp15, tmp16} - scrut3 = false - tmp13 = 1 - tmp14 = Transform3D__Legacy."Mx$Transform3D".init(c, 0) - tmp15 = Transform3D__Legacy."Mx$Transform3D".set1D(m, 1, tmp14) - tmp16 = 2 - iterInit_Transform3D_sp_14(tmp15, r, c, tmp16) - private fun iterInit_Transform3D_sp_14(m, r, c, i) = - let {scrut3, tmp13, tmp14, tmp15, tmp16} - scrut3 = false - tmp13 = 2 - tmp14 = Transform3D__Legacy."Mx$Transform3D".init(c, 0) - tmp15 = Transform3D__Legacy."Mx$Transform3D".set1D(m, 2, tmp14) - tmp16 = 1 - iterInit_Transform3D_sp_15(tmp15, r, c, tmp16) - private fun iterInit_Transform3D_sp_15(m, r, c, i) = - let {scrut3, tmp13, tmp14, tmp15, tmp16} - scrut3 = false - tmp13 = 3 - tmp14 = Transform3D__Legacy."Mx$Transform3D".init(c, 0) - tmp15 = Transform3D__Legacy."Mx$Transform3D".set1D(m, 3, tmp14) - tmp16 = 0 - iterInit_Transform3D_sp_16(tmp15, r, c, tmp16) - private fun iterInit_Transform3D_sp_16(m, r, c, i) = - let {scrut3, tmp13, tmp14, tmp15, tmp16} - scrut3 = true + iterCol_Transform3D_sp_46(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_46(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true m - private fun iterInit_Transform3D_sp_2(m, r, c, i) = - let {tup_56, tup_57, tup_58, tup_59, tup_60} - tup_56 = [0, 0, 0, 0] - tup_57 = [0, 0, 0, 0] - tup_58 = [0, 0, 0, 0] - tup_59 = [0, 0, 0, 0] - tup_60 = [tup_56, tup_57, tup_58, tup_59] - tup_60 - private fun iterInit_Transform3D_sp_3(m, r, c, i) = - let {tup_46, tup_47, tup_48, tup_49, tup_50} - tup_46 = [0, 0, 0, 0] - tup_47 = [0, 0, 0, 0] - tup_48 = [0, 0, 0, 0] - tup_49 = [0, 0, 0, 0] - tup_50 = [tup_46, tup_47, tup_48, tup_49] - tup_50 - private fun iterInit_Transform3D_sp_4(m, r, c, i) = - let {tup_36, tup_37, tup_38, tup_39, tup_40} - tup_36 = [0, 0, 0, 0] - tup_37 = [0, 0, 0, 0] - tup_38 = [0, 0, 0, 0] - tup_39 = [0, 0, 0, 0] - tup_40 = [tup_36, tup_37, tup_38, tup_39] - tup_40 - private fun iterInit_Transform3D_sp_5(m, r, c, i) = - let {scrut3, tmp13, tmp14, tmp15, tmp16, tup_222, tup_223} - scrut3 = ===(i, 0) - if scrut3 is - true then m - else - tmp13 = r - i - tup_222 = [0, 0, 0, 0] - tmp14 = tup_222 - tup_223 = [0, 0, 0, 0] - tmp15 = Transform3D__Legacy."Mx$Transform3D".set1D(m, tmp13, tup_223) - tmp16 = i - 1 - iterInit_Transform3D_sp_5(tmp15, r, c, tmp16) - private fun iterInit_Transform3D_sp_6(m, r, c, i) = - let {scrut3, tmp13, tmp14, tmp15, tmp16, tup_265, tup_266} - scrut3 = ===(i, 0) - if scrut3 is - true then m - else - tmp13 = r - i - tup_265 = [0] - tmp14 = tup_265 - tup_266 = [0] - tmp15 = Transform3D__Legacy."Mx$Transform3D".set1D(m, tmp13, tup_266) - tmp16 = i - 1 - iterInit_Transform3D_sp_6(tmp15, r, c, tmp16) - private fun iterInit_Transform3D_sp_7(m, r, c, i) = - let {tup_481, tup_482, tup_483, tup_484, tup_485} - tup_481 = [0] - tup_482 = [0] - tup_483 = [0] - tup_484 = [0] - tup_485 = [tup_481, tup_482, tup_483, tup_484] - tup_485 - private fun iterInit_Transform3D_sp_8(m, r, c, i) = - let {tup_471, tup_472, tup_473, tup_474, tup_475} - tup_471 = [0] - tup_472 = [0] - tup_473 = [0] - tup_474 = [0] - tup_475 = [tup_471, tup_472, tup_473, tup_474] - tup_475 - private fun iterInit_Transform3D_sp_9(m, r, c, i) = - let {tup_461, tup_462, tup_463, tup_464, tup_465} - tup_461 = [0] - tup_462 = [0] - tup_463 = [0] - tup_464 = [0] - tup_465 = [tup_461, tup_462, tup_463, tup_464] - tup_465 - private fun iterRow_Transform3D_sp_0(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp10, tmp11, tmp12} - scrut2 = ===(i, 0) - if scrut2 is - true then m - else - tmp10 = rowX - i - tmp11 = iterCol_Transform3D_sp_0(m, x, y, colX, colY, tmp10, colY) - tmp12 = i - 1 - iterRow_Transform3D_sp_0(tmp11, x, y, rowX, colX, colY, tmp12) - private fun iterRow_Transform3D_sp_1(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp10, tmp11, tmp12} - scrut2 = ===(i, 0) - if scrut2 is - true then m - else - tmp10 = rowX - i - tmp11 = iterCol_Transform3D_sp_5(m, x, y, colX, colY, tmp10, colY) - tmp12 = i - 1 - iterRow_Transform3D_sp_1(tmp11, x, y, rowX, colX, colY, tmp12) - private fun iterRow_Transform3D_sp_10(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp10, tmp11, tmp12} - scrut2 = false - tmp10 = 3 - tmp11 = iterCol_Transform3D_sp_18(m, x, y, colX, colY, tmp10, colY) - tmp12 = 0 - iterRow_Transform3D_sp_11(tmp11, x, y, rowX, colX, colY, tmp12) - private fun iterRow_Transform3D_sp_11(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp10, tmp11, tmp12} - scrut2 = true + private fun iterCol_Transform3D_sp_47(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_176(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_29(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_48(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_48(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true m - private fun iterRow_Transform3D_sp_2(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp10, tmp11, tmp12} - scrut2 = false + private fun iterCol_Transform3D_sp_49(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 tmp10 = 0 - tmp11 = iterCol_Transform3D_sp_7(m, x, y, colX, colY, tmp10, colY) - tmp12 = 3 - iterRow_Transform3D_sp_3(tmp11, x, y, rowX, colX, colY, tmp12) - private fun iterRow_Transform3D_sp_3(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp10, tmp11, tmp12} - scrut2 = false - tmp10 = 1 - tmp11 = iterCol_Transform3D_sp_9(m, x, y, colX, colY, tmp10, colY) - tmp12 = 2 - iterRow_Transform3D_sp_4(tmp11, x, y, rowX, colX, colY, tmp12) - private fun iterRow_Transform3D_sp_4(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp10, tmp11, tmp12} - scrut2 = false - tmp10 = 2 - tmp11 = iterCol_Transform3D_sp_11(m, x, y, colX, colY, tmp10, colY) - tmp12 = 1 - iterRow_Transform3D_sp_5(tmp11, x, y, rowX, colX, colY, tmp12) - private fun iterRow_Transform3D_sp_5(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp10, tmp11, tmp12} - scrut2 = false - tmp10 = 3 - tmp11 = iterCol_Transform3D_sp_13(m, x, y, colX, colY, tmp10, colY) - tmp12 = 0 - iterRow_Transform3D_sp_6(tmp11, x, y, rowX, colX, colY, tmp12) - private fun iterRow_Transform3D_sp_6(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp10, tmp11, tmp12} - scrut2 = true + tmp11 = iter_Transform3D_sp_181(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_26(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_50(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_5(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true m - private fun iterRow_Transform3D_sp_7(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp10, tmp11, tmp12} - scrut2 = false + private fun iterCol_Transform3D_sp_50(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_51(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 tmp10 = 0 - tmp11 = iterCol_Transform3D_sp_15(m, x, y, colX, colY, tmp10, colY) - tmp12 = 3 - iterRow_Transform3D_sp_8(tmp11, x, y, rowX, colX, colY, tmp12) - private fun iterRow_Transform3D_sp_8(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp10, tmp11, tmp12} - scrut2 = false - tmp10 = 1 - tmp11 = iterCol_Transform3D_sp_16(m, x, y, colX, colY, tmp10, colY) - tmp12 = 2 - iterRow_Transform3D_sp_9(tmp11, x, y, rowX, colX, colY, tmp12) - private fun iterRow_Transform3D_sp_9(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp10, tmp11, tmp12} - scrut2 = false - tmp10 = 2 - tmp11 = iterCol_Transform3D_sp_17(m, x, y, colX, colY, tmp10, colY) - tmp12 = 1 - iterRow_Transform3D_sp_10(tmp11, x, y, rowX, colX, colY, tmp12) - private fun iter_Transform3D_sp_0(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} - scrut = >(k, 0) - if scrut is - true then - tmp = colX - k - tmp1 = colX - k - tmp2 = *(x.(i).(tmp), y.(tmp1).(j)) - tmp3 = 0 + tmp2 - tmp4 = k - 1 - iter(tmp3, x, y, colX, i, j, tmp4) - else 0 - private fun iter_Transform3D_sp_1(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tup_224, tup_225, tup_226, tup_227, tup_228} - scrut = >(k, 0) - if scrut is - true then - tmp = colX - k - tmp1 = colX - k - tmp2 = *(x.(i).(tmp), y.(tmp1).(0)) - tmp3 = 0 + tmp2 - tmp4 = k - 1 - iter_Transform3D_sp_2(tmp3, x, y, colX, i, j, tmp4) - else 0 - private fun iter_Transform3D_sp_10(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + tmp11 = iter_Transform3D_sp_186(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_27(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_52(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_52(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_53(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_191(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_28(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_54(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_54(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_55(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_196(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_29(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_56(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_56(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_57(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_201(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_26(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_58(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_58(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_59(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_206(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_27(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_60(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_6(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_21(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_19(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_7(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_60(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_61(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_211(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_28(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_62(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_62(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_63(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_216(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_36(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_64(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_64(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_65(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_221(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_26(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_66(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_66(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_67(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_226(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_27(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_68(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_68(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_69(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_231(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_28(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_70(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_7(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_26(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_11(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_8(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_70(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_71(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_236(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_29(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_72(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_72(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m + private fun iterCol_Transform3D_sp_8(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_31(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_14(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_9(tmp12, x, y, colX, colY, i, tmp13) + private fun iterCol_Transform3D_sp_9(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_36(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_8(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_10(tmp12, x, y, colX, colY, i, tmp13) + private fun iterID_Transform3D_sp_0(m, w, i) = + let {scrut3, tmp17, tmp18, tmp19, tmp20} + scrut3 = ===(i, 0) + if scrut3 is + true then m + else + tmp17 = w - i + tmp18 = w - i + tmp19 = update_Transform3D_sp_2(m, tmp17, tmp18, 1) + tmp20 = i - 1 + iterID_Transform3D_sp_0(tmp19, w, tmp20) + private fun iterID_Transform3D_sp_1(m, w, i) = + let {tup_24, obj_25} + tup_24 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_25 = new Matrix(tup_24, 4, 4) + obj_25 + private fun iterID_Transform3D_sp_2(m, w, i) = + let {tup_22, obj_23} + tup_22 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_23 = new Matrix(tup_22, 4, 4) + obj_23 + private fun iterID_Transform3D_sp_3(m, w, i) = + let {tup_20, obj_21} + tup_20 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_21 = new Matrix(tup_20, 4, 4) + obj_21 + private fun iterID_Transform3D_sp_4(m, w, i) = + let {tup_18, obj_19} + tup_18 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_19 = new Matrix(tup_18, 4, 4) + obj_19 + private fun iterID_Transform3D_sp_5(m, w, i) = + let {tup_16, obj_17} + tup_16 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_17 = new Matrix(tup_16, 4, 4) + obj_17 + private fun iterRow_Transform3D_sp_0(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = ===(i, 0) + if scrut2 is + true then m + else + tmp14 = rowX - i + tmp15 = iterCol_Transform3D_sp_0(m, x, y, colX, colY, tmp14, colY) + tmp16 = i - 1 + iterRow(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_1(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 0 + tmp15 = iterCol_Transform3D_sp_1(m, x, y, colX, colY, tmp14, colY) + tmp16 = 3 + iterRow_Transform3D_sp_2(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_10(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = true + m + private fun iterRow_Transform3D_sp_11(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 0 + tmp15 = iterCol_Transform3D_sp_41(m, x, y, colX, colY, tmp14, colY) + tmp16 = 3 + iterRow_Transform3D_sp_12(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_12(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 1 + tmp15 = iterCol_Transform3D_sp_43(m, x, y, colX, colY, tmp14, colY) + tmp16 = 2 + iterRow_Transform3D_sp_13(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_13(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 2 + tmp15 = iterCol_Transform3D_sp_45(m, x, y, colX, colY, tmp14, colY) + tmp16 = 1 + iterRow_Transform3D_sp_14(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_14(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 3 + tmp15 = iterCol_Transform3D_sp_47(m, x, y, colX, colY, tmp14, colY) + tmp16 = 0 + iterRow_Transform3D_sp_15(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_15(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = true + m + private fun iterRow_Transform3D_sp_16(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 0 + tmp15 = iterCol_Transform3D_sp_49(m, x, y, colX, colY, tmp14, colY) + tmp16 = 3 + iterRow_Transform3D_sp_17(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_17(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 1 + tmp15 = iterCol_Transform3D_sp_51(m, x, y, colX, colY, tmp14, colY) + tmp16 = 2 + iterRow_Transform3D_sp_18(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_18(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 2 + tmp15 = iterCol_Transform3D_sp_53(m, x, y, colX, colY, tmp14, colY) + tmp16 = 1 + iterRow_Transform3D_sp_19(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_19(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 3 + tmp15 = iterCol_Transform3D_sp_55(m, x, y, colX, colY, tmp14, colY) + tmp16 = 0 + iterRow_Transform3D_sp_20(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_2(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 1 + tmp15 = iterCol_Transform3D_sp_6(m, x, y, colX, colY, tmp14, colY) + tmp16 = 2 + iterRow_Transform3D_sp_3(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_20(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = true + m + private fun iterRow_Transform3D_sp_21(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 0 + tmp15 = iterCol_Transform3D_sp_57(m, x, y, colX, colY, tmp14, colY) + tmp16 = 3 + iterRow_Transform3D_sp_22(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_22(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 1 + tmp15 = iterCol_Transform3D_sp_59(m, x, y, colX, colY, tmp14, colY) + tmp16 = 2 + iterRow_Transform3D_sp_23(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_23(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 2 + tmp15 = iterCol_Transform3D_sp_61(m, x, y, colX, colY, tmp14, colY) + tmp16 = 1 + iterRow_Transform3D_sp_24(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_24(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 3 + tmp15 = iterCol_Transform3D_sp_63(m, x, y, colX, colY, tmp14, colY) + tmp16 = 0 + iterRow_Transform3D_sp_25(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_25(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = true + m + private fun iterRow_Transform3D_sp_26(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 0 + tmp15 = iterCol_Transform3D_sp_65(m, x, y, colX, colY, tmp14, colY) + tmp16 = 3 + iterRow_Transform3D_sp_27(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_27(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 1 + tmp15 = iterCol_Transform3D_sp_67(m, x, y, colX, colY, tmp14, colY) + tmp16 = 2 + iterRow_Transform3D_sp_28(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_28(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 2 + tmp15 = iterCol_Transform3D_sp_69(m, x, y, colX, colY, tmp14, colY) + tmp16 = 1 + iterRow_Transform3D_sp_29(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_29(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 3 + tmp15 = iterCol_Transform3D_sp_71(m, x, y, colX, colY, tmp14, colY) + tmp16 = 0 + iterRow_Transform3D_sp_30(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_3(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 2 + tmp15 = iterCol_Transform3D_sp_11(m, x, y, colX, colY, tmp14, colY) + tmp16 = 1 + iterRow_Transform3D_sp_4(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_30(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = true + m + private fun iterRow_Transform3D_sp_4(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 3 + tmp15 = iterCol_Transform3D_sp_16(m, x, y, colX, colY, tmp14, colY) + tmp16 = 0 + iterRow_Transform3D_sp_5(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_5(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = true + m + private fun iterRow_Transform3D_sp_6(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 0 + tmp15 = iterCol_Transform3D_sp_21(m, x, y, colX, colY, tmp14, colY) + tmp16 = 3 + iterRow_Transform3D_sp_7(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_7(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 1 + tmp15 = iterCol_Transform3D_sp_26(m, x, y, colX, colY, tmp14, colY) + tmp16 = 2 + iterRow_Transform3D_sp_8(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_8(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 2 + tmp15 = iterCol_Transform3D_sp_31(m, x, y, colX, colY, tmp14, colY) + tmp16 = 1 + iterRow_Transform3D_sp_9(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iterRow_Transform3D_sp_9(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 3 + tmp15 = iterCol_Transform3D_sp_36(m, x, y, colX, colY, tmp14, colY) + tmp16 = 0 + iterRow_Transform3D_sp_10(tmp15, x, y, rowX, colX, colY, tmp16) + private fun iter_Transform3D_sp_0(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = >(k, 0) if scrut is true then - tmp = colX - k - tmp1 = colX - k - tmp2 = *(x.(i).(tmp), y.(tmp1).(0)) - tmp3 = sum + tmp2 - tmp4 = k - 1 - iter_Transform3D_sp_10(tmp3, x, y, colX, i, j, tmp4) - else sum + tmp = *(i, x.c) + tmp1 = tmp + colX + tmp2 = tmp1 - k + tmp3 = colX - k + tmp4 = *(tmp3, y.c) + tmp5 = tmp4 + j + tmp6 = *(x.arr.(tmp2), y.arr.(tmp5)) + tmp7 = 0 + tmp6 + tmp8 = k - 1 + iter(tmp7, x, y, colX, i, j, tmp8) + else 0 + private fun iter_Transform3D_sp_1(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(0), 1) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_2(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_10(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_100(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_101(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(4), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_102(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_102(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = *(x.arr.(5), y.arr.(4)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_103(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_103(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = *(x.arr.(6), y.arr.(8)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_104(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_104(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = *(x.arr.(7), y.arr.(12)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_105(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_105(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_106(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = *(x.arr.(4), y.arr.(1)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_107(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_107(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(5), y.arr.(5)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_108(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_108(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = *(x.arr.(6), y.arr.(9)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_109(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_109(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = *(x.arr.(7), y.arr.(13)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_110(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_11(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_12(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_110(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_111(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = *(x.arr.(4), y.arr.(2)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_112(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_112(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = *(x.arr.(5), y.arr.(6)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_113(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_113(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(6), y.arr.(10)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_114(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_114(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = *(x.arr.(7), y.arr.(14)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_115(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_115(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_116(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = *(x.arr.(4), y.arr.(3)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_117(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_117(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = *(x.arr.(5), y.arr.(7)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_118(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_118(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = *(x.arr.(6), y.arr.(11)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_119(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_119(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(7), y.arr.(15)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_120(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_12(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_13(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_120(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_121(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(8), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_122(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_122(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = *(x.arr.(9), y.arr.(4)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_123(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_123(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = *(x.arr.(10), y.arr.(8)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_124(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_124(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = *(x.arr.(11), y.arr.(12)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_125(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_125(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_126(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = *(x.arr.(8), y.arr.(1)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_127(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_127(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(9), y.arr.(5)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_128(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_128(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = *(x.arr.(10), y.arr.(9)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_129(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_129(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = *(x.arr.(11), y.arr.(13)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_130(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_13(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(2), 1) + tmp7 = 0 + tmp6 + tmp8 = 1 + iter_Transform3D_sp_14(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_130(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_131(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = *(x.arr.(8), y.arr.(2)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_132(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_132(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = *(x.arr.(9), y.arr.(6)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_133(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_133(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(10), y.arr.(10)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_134(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_134(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = *(x.arr.(11), y.arr.(14)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_135(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_135(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_136(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = *(x.arr.(8), y.arr.(3)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_137(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_137(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = *(x.arr.(9), y.arr.(7)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_138(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_138(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = *(x.arr.(10), y.arr.(11)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_139(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_139(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(11), y.arr.(15)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_140(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_14(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_15(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_140(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_141(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(12), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_142(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_142(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = *(x.arr.(13), y.arr.(4)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_143(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_143(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = *(x.arr.(14), y.arr.(8)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_144(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_144(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = *(x.arr.(15), y.arr.(12)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_145(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_145(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_146(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = *(x.arr.(12), y.arr.(1)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_147(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_147(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(13), y.arr.(5)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_148(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_148(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = *(x.arr.(14), y.arr.(9)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_149(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_149(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = *(x.arr.(15), y.arr.(13)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_150(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_15(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_150(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_151(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = *(x.arr.(12), y.arr.(2)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_152(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_152(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = *(x.arr.(13), y.arr.(6)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_153(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_153(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(14), y.arr.(10)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_154(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_154(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = *(x.arr.(15), y.arr.(14)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_155(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_155(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_156(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = *(x.arr.(12), y.arr.(3)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_157(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_157(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = *(x.arr.(13), y.arr.(7)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_158(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_158(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = *(x.arr.(14), y.arr.(11)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_159(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_159(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(15), y.arr.(15)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_160(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_16(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_17(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_160(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_161(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(0), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_162(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_162(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(1), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_163(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_163(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(2), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_164(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_164(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true tmp = 0 - tmp1 = 0 - tmp2 = *(0.4, y.(0).(0)) - tmp3 = 0 + tmp2 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 tmp4 = 3 - iter_Transform3D_sp_12(tmp3, x, y, colX, i, j, tmp4) - private fun iter_Transform3D_sp_12(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + tmp5 = 3 + tmp6 = *(x.arr.(3), 1) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_165(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_165(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_166(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 1 - tmp1 = 1 - tmp2 = 0 - tmp3 = sum + 0 + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(4), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_167(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_167(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(5), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_168(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_168(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 tmp4 = 2 - iter_Transform3D_sp_13(tmp3, x, y, colX, i, j, tmp4) - private fun iter_Transform3D_sp_13(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + tmp5 = 2 + tmp6 = *(x.arr.(6), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_169(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_169(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 2 - tmp1 = 2 - tmp2 = 0 - tmp3 = sum + 0 + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(7), 1) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_170(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_17(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_18(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_170(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_171(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(8), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_172(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_172(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 tmp4 = 1 - iter_Transform3D_sp_14(tmp3, x, y, colX, i, j, tmp4) - private fun iter_Transform3D_sp_14(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + tmp5 = 1 + tmp6 = *(x.arr.(9), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_173(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_173(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 3 - tmp1 = 3 - tmp2 = 0 - tmp3 = sum + 0 + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(10), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_174(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_174(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(11), 1) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_175(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_175(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_176(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 tmp4 = 0 - iter_Transform3D_sp_15(tmp3, x, y, colX, i, j, tmp4) - private fun iter_Transform3D_sp_15(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + tmp5 = 0 + tmp6 = *(x.arr.(12), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_177(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_177(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(13), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_178(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_178(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(14), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_179(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_179(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(15), 1) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_180(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_18(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = 0 + tmp7 = 0 + tmp8 = 1 + iter_Transform3D_sp_19(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_180(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = false sum - private fun iter_Transform3D_sp_16(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + private fun iter_Transform3D_sp_181(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true tmp = 0 - tmp1 = 0 + tmp1 = 4 tmp2 = 0 tmp3 = 0 - tmp4 = 3 - iter_Transform3D_sp_17(tmp3, x, y, colX, i, j, tmp4) - private fun iter_Transform3D_sp_17(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(0), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_182(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_182(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(1), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_183(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_183(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 1 - tmp1 = 1 - tmp2 = *(0.19, y.(1).(0)) - tmp3 = 0 + tmp2 + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 tmp4 = 2 - iter_Transform3D_sp_18(tmp3, x, y, colX, i, j, tmp4) - private fun iter_Transform3D_sp_18(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + tmp5 = 2 + tmp6 = *(x.arr.(2), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_184(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_184(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 2 - tmp1 = 2 - tmp2 = 0 - tmp3 = sum + 0 + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(3), y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_185(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_185(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_186(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(4), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_187(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_187(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 tmp4 = 1 - iter_Transform3D_sp_19(tmp3, x, y, colX, i, j, tmp4) + tmp5 = 1 + tmp6 = *(x.arr.(5), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_188(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_188(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(6), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_189(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_189(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(7), y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_190(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_19(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 3 - tmp1 = 3 - tmp2 = 0 - tmp3 = sum + 0 + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(3), 1) + tmp7 = 0 + tmp6 + tmp8 = 0 + iter_Transform3D_sp_20(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_190(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_191(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(8), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_192(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_192(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(9), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_193(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_193(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(10), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_194(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_194(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(11), y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_195(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_195(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_196(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 tmp4 = 0 - iter_Transform3D_sp_20(tmp3, x, y, colX, i, j, tmp4) + tmp5 = 0 + tmp6 = *(x.arr.(12), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_197(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_197(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(13), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_198(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_198(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(14), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_199(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_199(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(15), y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_200(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_2(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tup_229, tup_230, tup_231, tup_232, tup_233} - scrut = >(k, 0) - if scrut is - true then - tmp = colX - k - tmp1 = colX - k - tmp2 = *(x.(i).(tmp), y.(tmp1).(0)) - tmp3 = sum + tmp2 - tmp4 = k - 1 - iter_Transform3D_sp_2(tmp3, x, y, colX, i, j, tmp4) - else sum + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 2 + iter_Transform3D_sp_3(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_20(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = false sum - private fun iter_Transform3D_sp_21(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + private fun iter_Transform3D_sp_200(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_201(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true tmp = 0 - tmp1 = 0 + tmp1 = 4 tmp2 = 0 tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(0.4, y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_202(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_202(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 2 + iter_Transform3D_sp_203(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_203(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_204(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_204(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_205(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_205(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_206(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_207(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_207(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(0.19, y.arr.(1)) + tmp7 = 0 + tmp6 + tmp8 = 2 + iter_Transform3D_sp_208(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_208(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_209(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_209(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 tmp4 = 3 - iter_Transform3D_sp_22(tmp3, x, y, colX, i, j, tmp4) + tmp5 = 3 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_210(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_21(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(4), 1) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_22(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_210(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_211(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_212(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_212(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_213(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_213(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(0.19, y.arr.(2)) + tmp7 = 0 + tmp6 + tmp8 = 1 + iter_Transform3D_sp_214(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_214(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_215(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_215(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_216(sum, x, y, colX, i, j, k) = 1 + private fun iter_Transform3D_sp_217(sum, x, y, colX, i, j, k) = 1 + private fun iter_Transform3D_sp_218(sum, x, y, colX, i, j, k) = 1 + private fun iter_Transform3D_sp_219(sum, x, y, colX, i, j, k) = 1 private fun iter_Transform3D_sp_22(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 2 + iter_Transform3D_sp_23(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_220(sum, x, y, colX, i, j, k) = 1 + private fun iter_Transform3D_sp_221(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(1, y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_222(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_222(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 2 + iter_Transform3D_sp_223(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_223(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_224(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_224(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(11, y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_225(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_225(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_226(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_227(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_227(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(1, y.arr.(1)) + tmp7 = 0 + tmp6 + tmp8 = 2 + iter_Transform3D_sp_228(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_228(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_229(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_229(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(4, y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_230(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_23(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_24(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_230(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_231(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_232(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_232(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_233(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_233(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(1, y.arr.(2)) + tmp7 = 0 + tmp6 + tmp8 = 1 + iter_Transform3D_sp_234(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_234(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(51, y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_235(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_235(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_236(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_237(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_237(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_238(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_238(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 1 - tmp1 = 1 - tmp2 = 0 - tmp3 = 0 + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 tmp4 = 2 - iter_Transform3D_sp_23(tmp3, x, y, colX, i, j, tmp4) - private fun iter_Transform3D_sp_23(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + tmp5 = 2 + tmp6 = 0 + tmp7 = 0 + tmp8 = 1 + iter_Transform3D_sp_239(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_239(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 2 - tmp1 = 2 - tmp2 = *(0.19, y.(2).(0)) - tmp3 = 0 + tmp2 - tmp4 = 1 - iter_Transform3D_sp_24(tmp3, x, y, colX, i, j, tmp4) + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(1, y.arr.(3)) + tmp7 = 0 + tmp6 + tmp8 = 0 + iter_Transform3D_sp_240(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_24(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 3 - tmp1 = 3 - tmp2 = 0 - tmp3 = sum + 0 - tmp4 = 0 - iter_Transform3D_sp_25(tmp3, x, y, colX, i, j, tmp4) + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_25(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_240(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum private fun iter_Transform3D_sp_25(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = false sum - private fun iter_Transform3D_sp_26(sum, x, y, colX, i, j, k) = 1 - private fun iter_Transform3D_sp_27(sum, x, y, colX, i, j, k) = 1 - private fun iter_Transform3D_sp_28(sum, x, y, colX, i, j, k) = 1 - private fun iter_Transform3D_sp_29(sum, x, y, colX, i, j, k) = 1 + private fun iter_Transform3D_sp_26(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_27(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_27(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(5), 1) + tmp7 = 0 + tmp6 + tmp8 = 2 + iter_Transform3D_sp_28(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_28(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_29(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_29(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_30(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_3(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tup_234, tup_235, tup_236, tup_237, tup_238} - scrut = >(k, 0) - if scrut is - true then - tmp = colX - k - tmp1 = colX - k - tmp2 = *(x.(i).(tmp), y.(tmp1).(1)) - tmp3 = 0 + tmp2 - tmp4 = k - 1 - iter_Transform3D_sp_4(tmp3, x, y, colX, i, j, tmp4) - else 0 - private fun iter_Transform3D_sp_30(sum, x, y, colX, i, j, k) = 1 - private fun iter_Transform3D_sp_31(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true tmp = 0 - tmp1 = 0 - tmp2 = *(1, y.(0).(j)) - tmp3 = 0 + tmp2 - tmp4 = 3 - iter_Transform3D_sp_32(tmp3, x, y, colX, i, j, tmp4) + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_4(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_30(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_31(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_32(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_32(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 1 - tmp1 = 1 - tmp2 = 0 - tmp3 = sum + 0 - tmp4 = 2 - iter_Transform3D_sp_33(tmp3, x, y, colX, i, j, tmp4) + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_33(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_33(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 2 - tmp1 = 2 - tmp2 = 0 - tmp3 = sum + 0 - tmp4 = 1 - iter_Transform3D_sp_34(tmp3, x, y, colX, i, j, tmp4) + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(6), 1) + tmp7 = 0 + tmp6 + tmp8 = 1 + iter_Transform3D_sp_34(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_34(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 3 - tmp1 = 3 - tmp2 = *(11, y.(3).(j)) - tmp3 = sum + tmp2 - tmp4 = 0 - iter_Transform3D_sp_35(tmp3, x, y, colX, i, j, tmp4) + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_35(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_35(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = false sum private fun iter_Transform3D_sp_36(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 0 - tmp1 = 0 - tmp2 = 0 + tmp = 4 + tmp1 = 8 + tmp2 = 4 tmp3 = 0 - tmp4 = 3 - iter_Transform3D_sp_37(tmp3, x, y, colX, i, j, tmp4) + tmp4 = 0 + tmp5 = 3 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_37(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_37(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 1 - tmp1 = 1 - tmp2 = *(1, y.(1).(j)) - tmp3 = 0 + tmp2 - tmp4 = 2 - iter_Transform3D_sp_38(tmp3, x, y, colX, i, j, tmp4) + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_38(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_38(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 2 - tmp1 = 2 - tmp2 = 0 - tmp3 = sum + 0 - tmp4 = 1 - iter_Transform3D_sp_39(tmp3, x, y, colX, i, j, tmp4) + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = 0 + tmp7 = 0 + tmp8 = 1 + iter_Transform3D_sp_39(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_39(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 3 - tmp1 = 3 - tmp2 = *(4, y.(3).(j)) - tmp3 = sum + tmp2 - tmp4 = 0 - iter_Transform3D_sp_40(tmp3, x, y, colX, i, j, tmp4) + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(7), 1) + tmp7 = 0 + tmp6 + tmp8 = 0 + iter_Transform3D_sp_40(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_4(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tup_239, tup_240, tup_241, tup_242, tup_243} - scrut = >(k, 0) - if scrut is - true then - tmp = colX - k - tmp1 = colX - k - tmp2 = *(x.(i).(tmp), y.(tmp1).(1)) - tmp3 = sum + tmp2 - tmp4 = k - 1 - iter_Transform3D_sp_4(tmp3, x, y, colX, i, j, tmp4) - else sum + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_5(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_40(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = false sum private fun iter_Transform3D_sp_41(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 0 - tmp1 = 0 - tmp2 = 0 + tmp = 8 + tmp1 = 12 + tmp2 = 8 tmp3 = 0 - tmp4 = 3 - iter_Transform3D_sp_42(tmp3, x, y, colX, i, j, tmp4) + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(8), 1) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_42(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_42(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 1 - tmp1 = 1 - tmp2 = 0 - tmp3 = 0 - tmp4 = 2 - iter_Transform3D_sp_43(tmp3, x, y, colX, i, j, tmp4) + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 2 + iter_Transform3D_sp_43(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_43(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 2 - tmp1 = 2 - tmp2 = *(1, y.(2).(j)) - tmp3 = 0 + tmp2 - tmp4 = 1 - iter_Transform3D_sp_44(tmp3, x, y, colX, i, j, tmp4) + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_44(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_44(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 3 - tmp1 = 3 - tmp2 = *(51, y.(3).(j)) - tmp3 = sum + tmp2 - tmp4 = 0 - iter_Transform3D_sp_45(tmp3, x, y, colX, i, j, tmp4) + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_45(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_45(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = false sum private fun iter_Transform3D_sp_46(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 0 - tmp1 = 0 - tmp2 = 0 + tmp = 8 + tmp1 = 12 + tmp2 = 8 tmp3 = 0 - tmp4 = 3 - iter_Transform3D_sp_47(tmp3, x, y, colX, i, j, tmp4) + tmp4 = 0 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_47(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_47(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 1 - tmp1 = 1 - tmp2 = 0 - tmp3 = 0 - tmp4 = 2 - iter_Transform3D_sp_48(tmp3, x, y, colX, i, j, tmp4) + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(9), 1) + tmp7 = 0 + tmp6 + tmp8 = 2 + iter_Transform3D_sp_48(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_48(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 2 - tmp1 = 2 - tmp2 = 0 - tmp3 = 0 - tmp4 = 1 - iter_Transform3D_sp_49(tmp3, x, y, colX, i, j, tmp4) + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_49(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_49(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = true - tmp = 3 - tmp1 = 3 - tmp2 = *(1, y.(3).(j)) - tmp3 = 0 + tmp2 - tmp4 = 0 - iter_Transform3D_sp_50(tmp3, x, y, colX, i, j, tmp4) + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_50(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_5(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tup_244, tup_245, tup_246, tup_247, tup_248} - scrut = >(k, 0) - if scrut is - true then - tmp = colX - k - tmp1 = colX - k - tmp2 = *(x.(i).(tmp), y.(tmp1).(2)) - tmp3 = 0 + tmp2 - tmp4 = k - 1 - iter_Transform3D_sp_6(tmp3, x, y, colX, i, j, tmp4) - else 0 + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum private fun iter_Transform3D_sp_50(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_51(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_52(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_52(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_53(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_53(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(10), 1) + tmp7 = 0 + tmp6 + tmp8 = 1 + iter_Transform3D_sp_54(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_54(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_55(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_55(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} scrut = false sum + private fun iter_Transform3D_sp_56(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_57(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_57(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_58(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_58(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = 0 + tmp7 = 0 + tmp8 = 1 + iter_Transform3D_sp_59(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_59(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(11), 1) + tmp7 = 0 + tmp6 + tmp8 = 0 + iter_Transform3D_sp_60(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_6(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tup_249, tup_250, tup_251, tup_252, tup_253} - scrut = >(k, 0) - if scrut is - true then - tmp = colX - k - tmp1 = colX - k - tmp2 = *(x.(i).(tmp), y.(tmp1).(2)) - tmp3 = sum + tmp2 - tmp4 = k - 1 - iter_Transform3D_sp_6(tmp3, x, y, colX, i, j, tmp4) - else sum + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_7(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_60(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_61(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(12), 1) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_62(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_62(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 2 + iter_Transform3D_sp_63(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_63(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_64(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_64(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_65(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_65(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_66(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_67(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_67(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(13), 1) + tmp7 = 0 + tmp6 + tmp8 = 2 + iter_Transform3D_sp_68(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_68(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_69(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_69(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_70(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_7(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tup_254, tup_255, tup_256, tup_257, tup_258} - scrut = >(k, 0) - if scrut is - true then - tmp = colX - k - tmp1 = colX - k - tmp2 = *(x.(i).(tmp), y.(tmp1).(3)) - tmp3 = 0 + tmp2 - tmp4 = k - 1 - iter_Transform3D_sp_8(tmp3, x, y, colX, i, j, tmp4) - else 0 + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(1), 1) + tmp7 = 0 + tmp6 + tmp8 = 2 + iter_Transform3D_sp_8(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_70(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_71(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_72(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_72(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_73(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_73(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(14), 1) + tmp7 = 0 + tmp6 + tmp8 = 1 + iter_Transform3D_sp_74(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_74(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_75(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_75(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_76(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_77(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_77(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_78(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_78(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = 0 + tmp7 = 0 + tmp8 = 1 + iter_Transform3D_sp_79(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_79(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(15), 1) + tmp7 = 0 + tmp6 + tmp8 = 0 + iter_Transform3D_sp_80(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_8(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tup_259, tup_260, tup_261, tup_262, tup_263} - scrut = >(k, 0) - if scrut is - true then - tmp = colX - k - tmp1 = colX - k - tmp2 = *(x.(i).(tmp), y.(tmp1).(3)) - tmp3 = sum + tmp2 - tmp4 = k - 1 - iter_Transform3D_sp_8(tmp3, x, y, colX, i, j, tmp4) - else sum + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_9(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_80(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_81(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(0), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_82(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_82(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = *(x.arr.(1), y.arr.(4)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_83(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_83(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = *(x.arr.(2), y.arr.(8)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_84(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_84(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = *(x.arr.(3), y.arr.(12)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_85(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_85(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_86(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = *(x.arr.(0), y.arr.(1)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_87(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_87(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(1), y.arr.(5)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_88(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_88(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = *(x.arr.(2), y.arr.(9)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_89(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_89(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = *(x.arr.(3), y.arr.(13)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_90(tmp7, x, y, colX, i, j, tmp8) private fun iter_Transform3D_sp_9(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4} - scrut = >(k, 0) - if scrut is - true then - tmp = colX - k - tmp1 = colX - k - tmp2 = *(x.(i).(tmp), y.(tmp1).(0)) - tmp3 = 0 + tmp2 - tmp4 = k - 1 - iter_Transform3D_sp_10(tmp3, x, y, colX, i, j, tmp4) - else 0 + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_10(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_90(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_91(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = *(x.arr.(0), y.arr.(2)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_92(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_92(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = *(x.arr.(1), y.arr.(6)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_93(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_93(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(2), y.arr.(10)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_94(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_94(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = *(x.arr.(3), y.arr.(14)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_95(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_95(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum + private fun iter_Transform3D_sp_96(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = *(x.arr.(0), y.arr.(3)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_97(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_97(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = *(x.arr.(1), y.arr.(7)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_98(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_98(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = *(x.arr.(2), y.arr.(11)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_99(tmp7, x, y, colX, i, j, tmp8) + private fun iter_Transform3D_sp_99(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(3), y.arr.(15)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_100(tmp7, x, y, colX, i, j, tmp8) private fun model_Transform3D_sp_0(local, position, scaling, rotation) = - let {rot, res1, tmp43, tmp44, tmp45, tmp46, tmp47, tmp48, tmp49, tmp50, tmp51, tmp52, tmp53, tmp54, tmp55, tmp56, tmp57, tup_282, tup_283, tup_284, tup_285, tup_286, tup_342, tup_343, tup_344, tup_345, tup_346, tup_402, tup_403, tup_404, tup_405, tup_406} - tmp43 = rotateZ_Transform3D_sp_0(rotation.2) - tmp44 = rotateY_Transform3D_sp_0(rotation.1) - tmp45 = rotateX_Transform3D_sp_0(rotation.0) - tup_282 = [1, 0, 0, 0] - tup_283 = [0, 1, 0, 0] - tup_284 = [0, 0, 1, 0] - tup_285 = [0, 0, 0, 1] - tup_286 = [tup_282, tup_283, tup_284, tup_285] - tmp46 = tup_286 - tmp47 = multiply_Transform3D_sp_0(tmp45, tmp46) - tmp48 = multiply(tmp44, tmp47) - rot = multiply(tmp43, tmp48) - tup_342 = [1, 0, 0, 11] - tup_343 = [0, 1, 0, 4] - tup_344 = [0, 0, 1, 51] - tup_345 = [0, 0, 0, 1] - tup_346 = [tup_342, tup_343, tup_344, tup_345] - tmp49 = tup_346 - tup_402 = [0.4, 0, 0, 0] - tup_403 = [0, 0.19, 0, 0] - tup_404 = [0, 0, 0.19, 0] - tup_405 = [0, 0, 0, 1] - tup_406 = [tup_402, tup_403, tup_404, tup_405] - tmp50 = tup_406 - tmp51 = [local.0] - tmp52 = [local.1] - tmp53 = [local.2] - tmp54 = [1] - tmp55 = [tmp51, tmp52, tmp53, tmp54] - tmp56 = multiply_Transform3D_sp_2(tmp50, tmp55) - tmp57 = multiply(rot, tmp56) - res1 = multiply_Transform3D_sp_3(tmp49, tmp57) - [res1.0, res1.1, res1.2] + let {rot, res1, tmp47, tmp48, tmp49, tmp50, tmp51, tmp52, tmp53, tmp54, tmp55, tmp56, tmp57, tmp58} + tmp47 = rotateZ_Transform3D_sp_0(rotation.2) + tmp48 = rotateY_Transform3D_sp_0(rotation.1) + tmp49 = rotateX_Transform3D_sp_0(rotation.0) + tmp50 = ident_Transform3D_sp_0(4) + tmp51 = multiply_Transform3D_sp_0(tmp49, tmp50) + tmp52 = multiply_Transform3D_sp_1(tmp48, tmp51) + rot = multiply_Transform3D_sp_1(tmp47, tmp52) + tmp53 = transform_Transform3D_sp_0(position.0, position.1, position.2) + tmp54 = scale_Transform3D_sp_0(scaling.0, scaling.1, scaling.2) + tmp55 = [local.0, local.1, local.2, 1] + tmp56 = new Matrix(tmp55, 4, 1) + tmp57 = multiply_Transform3D_sp_4(tmp54, tmp56) + tmp58 = multiply_Transform3D_sp_3(rot, tmp57) + res1 = multiply_Transform3D_sp_5(tmp53, tmp58) + [res1.arr.0, res1.arr.1, res1.arr.2] private fun multiply_Transform3D_sp_0(x, y) = - let {rowX1, colX3, rowY, colY2, res} - rowX1 = x.length - colX3 = x.0.length - rowY = 4 - colY2 = 4 - res = zeros_Transform3D_sp_1(rowX1, colY2) - iterRow_Transform3D_sp_0(res, x, y, rowX1, colX3, colY2, rowX1) + let {res} + res = zeros_Transform3D_sp_0(x.r, y.c) + iterRow_Transform3D_sp_1(res, x, y, x.r, x.c, y.c, x.r) private fun multiply_Transform3D_sp_1(x, y) = - let {rowX1, colX3, rowY, colY2, res} - rowX1 = x.length - colX3 = x.0.length - rowY = 4 - colY2 = 1 - res = zeros_Transform3D_sp_2(rowX1, colY2) - iterRow_Transform3D_sp_1(res, x, y, rowX1, colX3, colY2, rowX1) + let {res} + res = zeros_Transform3D_sp_0(x.r, y.c) + iterRow_Transform3D_sp_6(res, x, y, x.r, x.c, y.c, x.r) private fun multiply_Transform3D_sp_2(x, y) = - let {rowX1, colX3, rowY, colY2, res, tup_496, tup_497, tup_498, tup_499, tup_500} - rowX1 = 4 - colX3 = 4 - rowY = 4 - colY2 = 1 - tup_496 = [0] - tup_497 = [0] - tup_498 = [0] - tup_499 = [0] - tup_500 = [tup_496, tup_497, tup_498, tup_499] - res = tup_500 - iterRow_Transform3D_sp_2(res, x, y, rowX1, colX3, colY2, rowX1) + let {res} + res = zeros_Transform3D_sp_1(x.r, y.c) + iterRow_Transform3D_sp_11(res, x, y, x.r, x.c, y.c, x.r) private fun multiply_Transform3D_sp_3(x, y) = - let {rowX1, colX3, rowY, colY2, res} - rowX1 = 4 - colX3 = 4 - rowY = y.length - colY2 = y.0.length - res = zeros_Transform3D_sp_4(rowX1, colY2) - iterRow_Transform3D_sp_7(res, x, y, rowX1, colX3, colY2, rowX1) + let {res} + res = zeros_Transform3D_sp_1(x.r, y.c) + iterRow_Transform3D_sp_16(res, x, y, x.r, x.c, y.c, x.r) + private fun multiply_Transform3D_sp_4(x, y) = + let {res} + res = zeros_Transform3D_sp_1(x.r, y.c) + iterRow_Transform3D_sp_21(res, x, y, x.r, x.c, y.c, x.r) + private fun multiply_Transform3D_sp_5(x, y) = + let {res} + res = zeros_Transform3D_sp_1(x.r, y.c) + iterRow_Transform3D_sp_26(res, x, y, x.r, x.c, y.c, x.r) private fun rotateX_Transform3D_sp_0(angle) = - let {s, c2, tmp28, tmp29, tmp30, tmp31, tmp32, tup_277, tup_278, tup_279, tup_280, tup_281} + let {s, c2, tmp32, tmp33, tmp34, tmp35, tmp36} s = globalThis.Math.sin(2.51327412) c2 = globalThis.Math.cos(2.51327412) - tup_277 = [1, 0, 0, 0] - tup_278 = [0, 1, 0, 0] - tup_279 = [0, 0, 1, 0] - tup_280 = [0, 0, 0, 1] - tup_281 = [tup_277, tup_278, tup_279, tup_280] - tmp28 = tup_281 - tmp29 = update_Transform3D_sp_6(tmp28, 1, 1, c2) - tmp30 = -(s) - tmp31 = update_Transform3D_sp_7(tmp29, 1, 2, tmp30) - tmp32 = update_Transform3D_sp_8(tmp31, 2, 1, s) - update_Transform3D_sp_5(tmp32, 2, 2, c2) + tmp32 = ident_Transform3D_sp_0(4) + tmp33 = update_Transform3D_sp_13(tmp32, 1, 1, c2) + tmp34 = -(s) + tmp35 = update_Transform3D_sp_14(tmp33, 1, 2, tmp34) + tmp36 = update_Transform3D_sp_15(tmp35, 2, 1, s) + update_Transform3D_sp_12(tmp36, 2, 2, c2) private fun rotateY_Transform3D_sp_0(angle) = - let {s1, c3, tmp33, tmp34, tmp35, tmp36, tmp37, tup_272, tup_273, tup_274, tup_275, tup_276} + let {s1, c3, tmp37, tmp38, tmp39, tmp40, tmp41} s1 = globalThis.Math.sin(3.1415926535) c3 = globalThis.Math.cos(3.1415926535) - tup_272 = [1, 0, 0, 0] - tup_273 = [0, 1, 0, 0] - tup_274 = [0, 0, 1, 0] - tup_275 = [0, 0, 0, 1] - tup_276 = [tup_272, tup_273, tup_274, tup_275] - tmp33 = tup_276 - tmp34 = update_Transform3D_sp_3(tmp33, 0, 0, c3) - tmp35 = update_Transform3D_sp_9(tmp34, 0, 2, s1) - tmp36 = -(s1) - tmp37 = update_Transform3D_sp_10(tmp35, 2, 0, tmp36) - update_Transform3D_sp_5(tmp37, 2, 2, c3) + tmp37 = ident_Transform3D_sp_0(4) + tmp38 = update_Transform3D_sp_10(tmp37, 0, 0, c3) + tmp39 = update_Transform3D_sp_16(tmp38, 0, 2, s1) + tmp40 = -(s1) + tmp41 = update_Transform3D_sp_17(tmp39, 2, 0, tmp40) + update_Transform3D_sp_12(tmp41, 2, 2, c3) private fun rotateZ_Transform3D_sp_0(angle) = - let {s2, c4, tmp38, tmp39, tmp40, tmp41, tmp42, tup_267, tup_268, tup_269, tup_270, tup_271} + let {s2, c4, tmp42, tmp43, tmp44, tmp45, tmp46} s2 = globalThis.Math.sin(0) c4 = globalThis.Math.cos(0) - tup_267 = [1, 0, 0, 0] - tup_268 = [0, 1, 0, 0] - tup_269 = [0, 0, 1, 0] - tup_270 = [0, 0, 0, 1] - tup_271 = [tup_267, tup_268, tup_269, tup_270] - tmp38 = tup_271 - tmp39 = update_Transform3D_sp_3(tmp38, 0, 0, c4) - tmp40 = -(s2) - tmp41 = update_Transform3D_sp_11(tmp39, 0, 1, tmp40) - tmp42 = update_Transform3D_sp_12(tmp41, 1, 0, s2) - update_Transform3D_sp_4(tmp42, 1, 1, c4) + tmp42 = ident_Transform3D_sp_0(4) + tmp43 = update_Transform3D_sp_10(tmp42, 0, 0, c4) + tmp44 = -(s2) + tmp45 = update_Transform3D_sp_18(tmp43, 0, 1, tmp44) + tmp46 = update_Transform3D_sp_19(tmp45, 1, 0, s2) + update_Transform3D_sp_11(tmp46, 1, 1, c4) private fun scale_Transform3D_sp_0(sx, sy, sz) = - let {tup_397, tup_398, tup_399, tup_400, tup_401} - tup_397 = [0.4, 0, 0, 0] - tup_398 = [0, 0.19, 0, 0] - tup_399 = [0, 0, 0.19, 0] - tup_400 = [0, 0, 0, 1] - tup_401 = [tup_397, tup_398, tup_399, tup_400] - tup_401 + let {tup_51, obj_52} + tup_51 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] + obj_52 = new Matrix(tup_51, 4, 4) + obj_52 private fun transform_Transform3D_sp_0(dx, dy, dz) = - let {tup_337, tup_338, tup_339, tup_340, tup_341} - tup_337 = [1, 0, 0, 11] - tup_338 = [0, 1, 0, 4] - tup_339 = [0, 0, 1, 51] - tup_340 = [0, 0, 0, 1] - tup_341 = [tup_337, tup_338, tup_339, tup_340] - tup_341 + let {tup_40, obj_41} + tup_40 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] + obj_41 = new Matrix(tup_40, 4, 4) + obj_41 private fun update_Transform3D_sp_0(m, i, j, v) = - let {tup_181, tup_182, tup_183, tup_184, tup_185} - tup_181 = [1, 0, 0, 0] - tup_182 = [0, 1, 0, 0] - tup_183 = [0, 0, 1, 0] - tup_184 = [0, 0, 0, 1] - tup_185 = [tup_181, tup_182, tup_183, tup_184] - Transform3D__Legacy."Mx$Transform3D".set2D(tup_185, 0, 3, v) - private fun update_Transform3D_sp_1(m, i, j, v) = Transform3D__Legacy."Mx$Transform3D".set2D(m, 1, 3, v) - private fun update_Transform3D_sp_10(m, i, j, v) = Transform3D__Legacy."Mx$Transform3D".set2D(m, 2, 0, v) - private fun update_Transform3D_sp_11(m, i, j, v) = Transform3D__Legacy."Mx$Transform3D".set2D(m, 0, 1, v) - private fun update_Transform3D_sp_12(m, i, j, v) = Transform3D__Legacy."Mx$Transform3D".set2D(m, 1, 0, v) + let {tmp23, tmp24, tmp25} + tmp23 = *(i, m.c) + tmp24 = tmp23 + j + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, tmp24, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_1(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = *(i, m.c) + tmp24 = tmp23 + j + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, tmp24, 1) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_10(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 0 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 0, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_11(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 4 + tmp24 = 5 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 5, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_12(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 8 + tmp24 = 10 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 10, v) + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_13(m, i, j, v) = - let {tup_297, tup_298, tup_299, tup_300, tup_301} - tup_297 = [1, 0, 0, 11] - tup_298 = [0, 1, 0, 0] - tup_299 = [0, 0, 1, 0] - tup_300 = [0, 0, 0, 1] - tup_301 = [tup_297, tup_298, tup_299, tup_300] - tup_301 + let {tmp23, tmp24, tmp25} + tmp23 = 4 + tmp24 = 5 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 5, v) + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_14(m, i, j, v) = - let {tup_312, tup_313, tup_314, tup_315, tup_316} - tup_312 = [1, 0, 0, 11] - tup_313 = [0, 1, 0, 4] - tup_314 = [0, 0, 1, 0] - tup_315 = [0, 0, 0, 1] - tup_316 = [tup_312, tup_313, tup_314, tup_315] - tup_316 + let {tmp23, tmp24, tmp25} + tmp23 = 4 + tmp24 = 6 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 6, v) + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_15(m, i, j, v) = - let {tup_327, tup_328, tup_329, tup_330, tup_331} - tup_327 = [1, 0, 0, 11] - tup_328 = [0, 1, 0, 4] - tup_329 = [0, 0, 1, 51] - tup_330 = [0, 0, 0, 1] - tup_331 = [tup_327, tup_328, tup_329, tup_330] - tup_331 + let {tmp23, tmp24, tmp25} + tmp23 = 8 + tmp24 = 9 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 9, v) + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_16(m, i, j, v) = - let {tup_357, tup_358, tup_359, tup_360, tup_361} - tup_357 = [0.4, 0, 0, 0] - tup_358 = [0, 1, 0, 0] - tup_359 = [0, 0, 1, 0] - tup_360 = [0, 0, 0, 1] - tup_361 = [tup_357, tup_358, tup_359, tup_360] - tup_361 + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 2 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 2, v) + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_17(m, i, j, v) = - let {tup_372, tup_373, tup_374, tup_375, tup_376} - tup_372 = [0.4, 0, 0, 0] - tup_373 = [0, 0.19, 0, 0] - tup_374 = [0, 0, 1, 0] - tup_375 = [0, 0, 0, 1] - tup_376 = [tup_372, tup_373, tup_374, tup_375] - tup_376 + let {tmp23, tmp24, tmp25} + tmp23 = 8 + tmp24 = 8 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 8, v) + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_18(m, i, j, v) = - let {tup_387, tup_388, tup_389, tup_390, tup_391} - tup_387 = [0.4, 0, 0, 0] - tup_388 = [0, 0.19, 0, 0] - tup_389 = [0, 0, 0.19, 0] - tup_390 = [0, 0, 0, 1] - tup_391 = [tup_387, tup_388, tup_389, tup_390] - tup_391 - private fun update_Transform3D_sp_2(m, i, j, v) = Transform3D__Legacy."Mx$Transform3D".set2D(m, 2, 3, v) + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 1 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 1, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_19(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 4 + tmp24 = 4 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 4, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_2(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = *(i, m.c) + tmp24 = tmp23 + j + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, tmp24, 1) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_20(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 0 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 0, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_21(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 3 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_22(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 12 + tmp24 = 12 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 12, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_23(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 12 + tmp24 = 13 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 13, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_24(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 12 + tmp24 = 14 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 14, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_25(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 12 + tmp24 = 15 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 15, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_26(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 0 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 0, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_27(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 1 + tmp24 = 1 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 1, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_28(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 2 + tmp24 = 2 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 2, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_29(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 3 + tmp24 = 3 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, v) + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_3(m, i, j, v) = - let {tup_191, tup_192, tup_193, tup_194, tup_195} - tup_191 = [1, 0, 0, 0] - tup_192 = [0, 1, 0, 0] - tup_193 = [0, 0, 1, 0] - tup_194 = [0, 0, 0, 1] - tup_195 = [tup_191, tup_192, tup_193, tup_194] - Transform3D__Legacy."Mx$Transform3D".set2D(tup_195, 0, 0, v) - private fun update_Transform3D_sp_4(m, i, j, v) = Transform3D__Legacy."Mx$Transform3D".set2D(m, 1, 1, v) - private fun update_Transform3D_sp_5(m, i, j, v) = Transform3D__Legacy."Mx$Transform3D".set2D(m, 2, 2, v) + let {tup_5, obj_6} + tup_5 = [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + obj_6 = new Matrix(tup_5, 4, 4) + obj_6 + private fun update_Transform3D_sp_30(m, i, j, v) = + let {tup_32, obj_33} + tup_32 = [1, 0, 0, 11, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_33 = new Matrix(tup_32, 4, 4) + obj_33 + private fun update_Transform3D_sp_31(m, i, j, v) = + let {tup_35, obj_36} + tup_35 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 0, 0, 0, 0, 1] + obj_36 = new Matrix(tup_35, 4, 4) + obj_36 + private fun update_Transform3D_sp_32(m, i, j, v) = + let {tup_38, obj_39} + tup_38 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] + obj_39 = new Matrix(tup_38, 4, 4) + obj_39 + private fun update_Transform3D_sp_33(m, i, j, v) = + let {tup_43, obj_44} + tup_43 = [0.4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_44 = new Matrix(tup_43, 4, 4) + obj_44 + private fun update_Transform3D_sp_34(m, i, j, v) = + let {tup_46, obj_47} + tup_46 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_47 = new Matrix(tup_46, 4, 4) + obj_47 + private fun update_Transform3D_sp_35(m, i, j, v) = + let {tup_49, obj_50} + tup_49 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] + obj_50 = new Matrix(tup_49, 4, 4) + obj_50 + private fun update_Transform3D_sp_36(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 3 + tmp24 = 3 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, 1) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_4(m, i, j, v) = + let {tup_8, obj_9} + tup_8 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + obj_9 = new Matrix(tup_8, 4, 4) + obj_9 + private fun update_Transform3D_sp_5(m, i, j, v) = + let {tup_11, obj_12} + tup_11 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0] + obj_12 = new Matrix(tup_11, 4, 4) + obj_12 private fun update_Transform3D_sp_6(m, i, j, v) = - let {tup_201, tup_202, tup_203, tup_204, tup_205} - tup_201 = [1, 0, 0, 0] - tup_202 = [0, 1, 0, 0] - tup_203 = [0, 0, 1, 0] - tup_204 = [0, 0, 0, 1] - tup_205 = [tup_201, tup_202, tup_203, tup_204] - Transform3D__Legacy."Mx$Transform3D".set2D(tup_205, 1, 1, v) - private fun update_Transform3D_sp_7(m, i, j, v) = Transform3D__Legacy."Mx$Transform3D".set2D(m, 1, 2, v) - private fun update_Transform3D_sp_8(m, i, j, v) = Transform3D__Legacy."Mx$Transform3D".set2D(m, 2, 1, v) - private fun update_Transform3D_sp_9(m, i, j, v) = Transform3D__Legacy."Mx$Transform3D".set2D(m, 0, 2, v) + let {tup_14, obj_15} + tup_14 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_15 = new Matrix(tup_14, 4, 4) + obj_15 + private fun update_Transform3D_sp_7(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 3 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_8(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 4 + tmp24 = 7 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 7, v) + new Matrix(tmp25, m.r, m.c) + private fun update_Transform3D_sp_9(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 8 + tmp24 = 11 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 11, v) + new Matrix(tmp25, m.r, m.c) private fun zeros_Transform3D_sp_0(r, c) = - let {tup_86, tup_87, tup_88, tup_89, tup_90} - tup_86 = [0, 0, 0, 0] - tup_87 = [0, 0, 0, 0] - tup_88 = [0, 0, 0, 0] - tup_89 = [0, 0, 0, 0] - tup_90 = [tup_86, tup_87, tup_88, tup_89] - tup_90 + let {tup_2, obj_3} + tup_2 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + obj_3 = new Matrix(tup_2, 4, 4) + obj_3 private fun zeros_Transform3D_sp_1(r, c) = - let {m4, tmp21, tup_221} - tmp21 = [] - tup_221 = [] - m4 = Transform3D__Legacy."Mx$Transform3D".init(r, tup_221) - iterInit_Transform3D_sp_5(m4, r, c, r) - private fun zeros_Transform3D_sp_2(r, c) = - let {m4, tmp21, tup_264} - tmp21 = [] - tup_264 = [] - m4 = Transform3D__Legacy."Mx$Transform3D".init(r, tup_264) - iterInit_Transform3D_sp_6(m4, r, c, r) - private fun zeros_Transform3D_sp_3(r, c) = - let {tup_491, tup_492, tup_493, tup_494, tup_495} - tup_491 = [0] - tup_492 = [0] - tup_493 = [0] - tup_494 = [0] - tup_495 = [tup_491, tup_492, tup_493, tup_494] - tup_495 - private fun zeros_Transform3D_sp_4(r, c) = - let {m4, tmp21, tup_506, tup_507, tup_508, tup_509, tup_510} - tmp21 = [] - tup_506 = [] - tup_507 = [] - tup_508 = [] - tup_509 = [] - tup_510 = [tup_506, tup_507, tup_508, tup_509] - m4 = tup_510 - iterInit_Transform3D_sp_12(m4, r, c, r) \ No newline at end of file + let {tup_29, obj_30} + tup_29 = [0, 0, 0, 0] + obj_30 = new Matrix(tup_29, 4, 1) + obj_30 \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls b/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls index 62b9a69a15..e8d0113dfc 100644 --- a/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls +++ b/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls @@ -217,28 +217,23 @@ print(Dispatching."cache$Dispatching") //│ > fun test(b) = //│ > let {y1, m, tmp1, tmp2, tmp3} //│ > tmp1 = new L1.class(1) -//│ > y1 = 11 +//│ > y1 = twice_Dispatching_sp_0(tmp1, 5) //│ > tmp2 = new L2.class(2) //│ > tmp3 = new L3.class(3) //│ > m = pick_Dispatching_sp_2(tmp2, tmp3, b) //│ > twice_Dispatching_sp_3(m, 5) //│ > private fun pick_Dispatching_sp_0(x, y, b) = +//│ > let {obj_1} +//│ > obj_1 = new L2.class(2) +//│ > obj_1 +//│ > private fun pick_Dispatching_sp_1(x, y, b) = //│ > let {obj_2} -//│ > obj_2 = new L2.class(2) +//│ > obj_2 = new L3.class(3) //│ > obj_2 -//│ > private fun pick_Dispatching_sp_1(x, y, b) = -//│ > let {obj_5} -//│ > obj_5 = new L3.class(3) -//│ > obj_5 //│ > private fun pick_Dispatching_sp_2(x, y, b) = -//│ > let {obj_7, obj_8} //│ > if b is -//│ > true then -//│ > obj_7 = new L2.class(2) -//│ > obj_7 -//│ > else -//│ > obj_8 = new L3.class(3) -//│ > obj_8 +//│ > true then x +//│ > else y //│ > private fun test_Dispatching_sp_0(b) = 9 //│ > private fun test_Dispatching_sp_1(b) = 29 //│ > private fun twice_Dispatching_sp_0(f, x) = 11 diff --git a/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls b/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls new file mode 100644 index 0000000000..519f377419 --- /dev/null +++ b/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls @@ -0,0 +1,514 @@ +:js +:staging +:noModuleCheck + +import "../../mlscript-compile/staging/StagedRegExp.mls" + + +StagedRegExp."generate"("../StagedRegExp.mls", "./hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] RangeError: Maximum call stack size exceeded +//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:549:56) +//│ at SpecializeHelpers.sor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2433:30) +//│ at lambda (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2338:34) +//│ at Array.map () +//│ at SpecializeHelpers.sorBuiltinOp (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2340:42) +//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:782:40) +//│ at SpecializeHelpers.sor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2433:30) +//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:1259:52) +//│ at SpecializeHelpers.prop (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2657:30) +//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:1047:46) + + +import "../../mlscript-compile/staging/out/StagedRegExp.mls" +//│ FAILURE: Unexpected exception +//│ /!!!\ Uncaught error: java.nio.file.NoSuchFileException: /home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls +//│ at: java.base/sun.nio.fs.UnixException.translateToIOException(UnixException.java:92) +//│ at: java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:106) +//│ at: java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:111) +//│ at: java.base/sun.nio.fs.UnixFileAttributeViews$Basic.readAttributes(UnixFileAttributeViews.java:55) +//│ at: java.base/sun.nio.fs.UnixFileSystemProvider.readAttributes(UnixFileSystemProvider.java:171) +//│ at: java.base/sun.nio.fs.LinuxFileSystemProvider.readAttributes(LinuxFileSystemProvider.java:99) +//│ at: java.base/java.nio.file.Files.readAttributes(Files.java:1854) +//│ at: java.base/java.nio.file.Files.getLastModifiedTime(Files.java:2397) +//│ at: os.mtime$.apply(StatOps.scala:61) +//│ at: hkmc2.io.JavaFileSystem.getLastChangedTimestamp(PlatformFileSystem.scala:13) + +open StagedRegExp + +match(Exact("x"), "x") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL23:1:109 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + +match(Exact("x"), "x") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL26:1:111 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(Exact("x"), "") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL29:1:111 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(Exact("x"), "xyz") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL32:1:111 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + +match(Any(), "x") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL35:1:106 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(Any(), "") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL38:1:106 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(Any(), "xyz") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL41:1:107 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(Not(["x", "y", "z"]), "xyz") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL44:1:175 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(Not(["x", "y", "z"]), "w") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL47:1:177 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(Union(Union(Exact("x"), Exact("y")), Exact("z")), "z") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL50:1:368 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(Union(Union(Exact("x"), Exact("y")), Exact("z")), "y") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL53:1:368 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + +match(Union(Union(Exact("x"), Exact("y")), Exact("z")), "w") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL56:1:368 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(question(Exact("x")), "x") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.question is not a function +//│ at REPL59:1:115 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + +match(question(Exact("x")), "y") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.question is not a function +//│ at REPL62:1:115 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + +match(question(Exact("x")), "xx") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.question is not a function +//│ at REPL65:1:115 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(question(Any()), "y") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.question is not a function +//│ at REPL68:1:110 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(Concat(Star(Exact("x")), Exact("y")), "x") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL71:1:302 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(Concat(Star(Exact("x")), Exact("y")), "y") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL74:1:302 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(Concat(Star(Exact("x")), Exact("y")), "xxxxxy") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL77:1:302 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(Concat(Star(Exact("x")), Exact("y")), "xyyyy") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function +//│ at REPL80:1:302 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(plus(Exact("x")), "") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.plus is not a function +//│ at REPL83:1:115 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + +match(plus(Exact("x")), "x") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.plus is not a function +//│ at REPL86:1:115 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(plus(Exact("x")), "y") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.plus is not a function +//│ at REPL89:1:115 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(plus(Exact("x")), "xxx") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.plus is not a function +//│ at REPL92:1:115 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(plus(Exact("x")), "xxxy") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.plus is not a function +//│ at REPL95:1:115 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +// x{3}, equivalent to xxx +match(nTimes(Exact("x"), 3), "xxx") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.nTimes is not a function +//│ at REPL98:1:115 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(nTimes(Exact("x"), 3), "xxy") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.nTimes is not a function +//│ at REPL101:1:115 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +match(nTimes(Exact("x"), 3), "xx") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.nTimes is not a function +//│ at REPL104:1:115 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +:silent +let p = Concat(In(["T", "t"]), Concat(Star(words()), notWord())) +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.words is not a function +//│ at REPL107:1:197 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + + +matchAll(p, "To be or not to be, that is the question.") +//│ FAILURE: Unexpected runtime error +//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) +//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.matchAll is not a function +//│ at REPL109:1:52 +//│ at ContextifyScript.runInThisContext (node:vm:137:12) +//│ at defaultEval (node:repl:610:24) +//│ at REPLEvalInContext (node:repl:693:9) +//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) +//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) +//│ at REPLServer.onLine (node:repl:830:12) +//│ at REPLServer.emit (node:events:509:20) +//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) +//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) + diff --git a/hkmc2/shared/src/test/mlscript/block-staging/Transform3DTest.mls b/hkmc2/shared/src/test/mlscript/block-staging/Transform3DTest.mls index 81c44cd747..6d8ed0de99 100644 --- a/hkmc2/shared/src/test/mlscript/block-staging/Transform3DTest.mls +++ b/hkmc2/shared/src/test/mlscript/block-staging/Transform3DTest.mls @@ -5,63 +5,111 @@ import "../../mlscript-compile/NaiveTransform3D.mls" -let x = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] -let y = [[9, 8, 7], [6, 5, 4], [3, 2, 1]] -//│ x = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] -//│ y = [[9, 8, 7], [6, 5, 4], [3, 2, 1]] +let x = new NaiveTransform3D.Matrix([1, 2, 3, 4, 5, 6, 7, 8, 9], 3, 3) +let y = new NaiveTransform3D.Matrix([9, 8, 7, 6, 5, 4, 3, 2, 1], 3, 3) +//│ x = Matrix([1, 2, 3, 4, 5, 6, 7, 8, 9], 3, 3) +//│ y = Matrix([9, 8, 7, 6, 5, 4, 3, 2, 1], 3, 3) NaiveTransform3D.multiply of x, y -//│ = [[30, 24, 18], [84, 69, 54], [138, 114, 90]] +//│ = Matrix([30, 24, 18, 84, 69, 54, 138, 114, 90], 3, 3) NaiveTransform3D.ident(4) -//│ = [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]] +//│ = Matrix([1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 4, 4) NaiveTransform3D.update(NaiveTransform3D.ident(3), 1, 2, 5) -//│ = [[1, 0, 0], [0, 1, 5], [0, 0, 1]] +//│ = Matrix([1, 0, 0, 0, 1, 5, 0, 0, 1], 3, 3) NaiveTransform3D.transform(1, 2, 3) -//│ = [[1, 0, 0, 1], [0, 1, 0, 2], [0, 0, 1, 3], [0, 0, 0, 1]] +//│ = Matrix([1, 0, 0, 1, 0, 1, 0, 2, 0, 0, 1, 3, 0, 0, 0, 1], 4, 4) NaiveTransform3D.scale(2, 2, 2) -//│ = [[2, 0, 0, 0], [0, 2, 0, 0], [0, 0, 2, 0], [0, 0, 0, 1]] +//│ = Matrix([2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1], 4, 4) NaiveTransform3D.rotateX(3.1415 / 2) -//│ = [ -//│ [1, 0, 0, 0], -//│ [0, 0.00004632679487995776, -0.999999998926914, 0], -//│ [0, 0.999999998926914, 0.00004632679487995776, 0], -//│ [0, 0, 0, 1] -//│ ] +//│ = Matrix( +//│ [ +//│ 1, +//│ 0, +//│ 0, +//│ 0, +//│ 0, +//│ 0.00004632679487995776, +//│ -0.999999998926914, +//│ 0, +//│ 0, +//│ 0.999999998926914, +//│ 0.00004632679487995776, +//│ 0, +//│ 0, +//│ 0, +//│ 0, +//│ 1 +//│ ], +//│ 4, +//│ 4 +//│ ) NaiveTransform3D.rotateY(3.1415 / 2) -//│ = [ -//│ [0.00004632679487995776, 0, 0.999999998926914, 0], -//│ [0, 1, 0, 0], -//│ [-0.999999998926914, 0, 0.00004632679487995776, 0], -//│ [0, 0, 0, 1] -//│ ] +//│ = Matrix( +//│ [ +//│ 0.00004632679487995776, +//│ 0, +//│ 0.999999998926914, +//│ 0, +//│ 0, +//│ 1, +//│ 0, +//│ 0, +//│ -0.999999998926914, +//│ 0, +//│ 0.00004632679487995776, +//│ 0, +//│ 0, +//│ 0, +//│ 0, +//│ 1 +//│ ], +//│ 4, +//│ 4 +//│ ) NaiveTransform3D.rotateZ(3.1415 / 2) -//│ = [ -//│ [0.00004632679487995776, -0.999999998926914, 0, 0], -//│ [0.999999998926914, 0.00004632679487995776, 0, 0], -//│ [0, 0, 1, 0], -//│ [0, 0, 0, 1] -//│ ] +//│ = Matrix( +//│ [ +//│ 0.00004632679487995776, +//│ -0.999999998926914, +//│ 0, +//│ 0, +//│ 0.999999998926914, +//│ 0.00004632679487995776, +//│ 0, +//│ 0, +//│ 0, +//│ 0, +//│ 1, +//│ 0, +//│ 0, +//│ 0, +//│ 0, +//│ 1 +//│ ], +//│ 4, +//│ 4 +//│ ) NaiveTransform3D.model([[10], [0], [0]], [5, 0, 0], [0.5, 0.5, 0.5], [0, 0, 3.1415926535 / 2.0]) -//│ = [[5.000000000224483], [5], [0]] +//│ = [5.000000000224483, 5, 0] NaiveTransform3D.model0([[10], [0], [0]]) -//│ = [[7], [4], [50.99999999964083]] +//│ = [7, 4, 50.99999999964083] import "../../mlscript-compile/staging/Transform3D.mls" @@ -70,54 +118,106 @@ Transform3D."generate"("../Transform3D.mls", "./hkmc2/shared/src/test/mlscript-c import "../../mlscript-compile/staging/out/Transform3D.mls" +let x = new Transform3D.Matrix([1, 2, 3, 4, 5, 6, 7, 8, 9], 3, 3) +let y = new Transform3D.Matrix([9, 8, 7, 6, 5, 4, 3, 2, 1], 3, 3) +//│ x = Matrix([1, 2, 3, 4, 5, 6, 7, 8, 9], 3, 3) +//│ y = Matrix([9, 8, 7, 6, 5, 4, 3, 2, 1], 3, 3) Transform3D.multiply of x, y -//│ = [[30, 24, 18], [84, 69, 54], [138, 114, 90]] +//│ = Matrix([30, 24, 18, 84, 69, 54, 138, 114, 90], 3, 3) Transform3D.ident(4) -//│ = [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]] +//│ = Matrix([1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 4, 4) Transform3D.update(Transform3D.ident(3), 1, 2, 5) -//│ = [[1, 0, 0], [0, 1, 5], [0, 0, 1]] +//│ = Matrix([1, 0, 0, 0, 1, 5, 0, 0, 1], 3, 3) Transform3D.transform(1, 2, 3) -//│ = [[1, 0, 0, 1], [0, 1, 0, 2], [0, 0, 1, 3], [0, 0, 0, 1]] +//│ = Matrix([1, 0, 0, 1, 0, 1, 0, 2, 0, 0, 1, 3, 0, 0, 0, 1], 4, 4) Transform3D.scale(2, 2, 2) -//│ = [[2, 0, 0, 0], [0, 2, 0, 0], [0, 0, 2, 0], [0, 0, 0, 1]] +//│ = Matrix([2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1], 4, 4) Transform3D.rotateX(3.1415 / 2) -//│ = [ -//│ [1, 0, 0, 0], -//│ [0, 0.00004632679487995776, -0.999999998926914, 0], -//│ [0, 0.999999998926914, 0.00004632679487995776, 0], -//│ [0, 0, 0, 1] -//│ ] +//│ = Matrix( +//│ [ +//│ 1, +//│ 0, +//│ 0, +//│ 0, +//│ 0, +//│ 0.00004632679487995776, +//│ -0.999999998926914, +//│ 0, +//│ 0, +//│ 0.999999998926914, +//│ 0.00004632679487995776, +//│ 0, +//│ 0, +//│ 0, +//│ 0, +//│ 1 +//│ ], +//│ 4, +//│ 4 +//│ ) Transform3D.rotateY(3.1415 / 2) -//│ = [ -//│ [0.00004632679487995776, 0, 0.999999998926914, 0], -//│ [0, 1, 0, 0], -//│ [-0.999999998926914, 0, 0.00004632679487995776, 0], -//│ [0, 0, 0, 1] -//│ ] +//│ = Matrix( +//│ [ +//│ 0.00004632679487995776, +//│ 0, +//│ 0.999999998926914, +//│ 0, +//│ 0, +//│ 1, +//│ 0, +//│ 0, +//│ -0.999999998926914, +//│ 0, +//│ 0.00004632679487995776, +//│ 0, +//│ 0, +//│ 0, +//│ 0, +//│ 1 +//│ ], +//│ 4, +//│ 4 +//│ ) Transform3D.rotateZ(3.1415 / 2) -//│ = [ -//│ [0.00004632679487995776, -0.999999998926914, 0, 0], -//│ [0.999999998926914, 0.00004632679487995776, 0, 0], -//│ [0, 0, 1, 0], -//│ [0, 0, 0, 1] -//│ ] +//│ = Matrix( +//│ [ +//│ 0.00004632679487995776, +//│ -0.999999998926914, +//│ 0, +//│ 0, +//│ 0.999999998926914, +//│ 0.00004632679487995776, +//│ 0, +//│ 0, +//│ 0, +//│ 0, +//│ 1, +//│ 0, +//│ 0, +//│ 0, +//│ 0, +//│ 1 +//│ ], +//│ 4, +//│ 4 +//│ ) Transform3D.model([[10], [0], [0]], [5, 0, 0], [0.5, 0.5, 0.5], [0, 0, 3.1415926535 / 2.0]) -//│ = [[5.000000000224483], [5], [0]] +//│ = [5.000000000224483, 5, 0] Transform3D.model0([[10], [0], [0]]) -//│ = [[7], [4], [50.99999999964083]] +//│ = [7, 4, 50.99999999964083] From 679daa8c9fcda0425ac4be13cff40834e5a51c73 Mon Sep 17 00:00:00 2001 From: NeilKleistGao Date: Thu, 28 May 2026 16:32:11 +0800 Subject: [PATCH 3/9] WIP: Remove flat --- .../src/test/mlscript-compile/Shape.mls | 30 +++++++---- .../src/test/mlscript-compile/ShapeSet.mls | 40 +++++++-------- .../mlscript-compile/SpecializeHelpers.mls | 8 +-- .../shared/src/test/mlscript/ShapeSetTest.mls | 6 +-- .../block-staging/ShapeSetHelpers.mls | 51 ++++++++++--------- 5 files changed, 71 insertions(+), 64 deletions(-) diff --git a/hkmc2/shared/src/test/mlscript-compile/Shape.mls b/hkmc2/shared/src/test/mlscript-compile/Shape.mls index c1025b32c8..ec29204a71 100644 --- a/hkmc2/shared/src/test/mlscript-compile/Shape.mls +++ b/hkmc2/shared/src/test/mlscript-compile/Shape.mls @@ -1,11 +1,13 @@ import "./Block.mls" import "./Option.mls" import "./CachedHash.mls" +import "./ShapeSet.mjs" open Block { Literal, ConcreteClassSymbol, isPrimitiveType, isPrimitiveTypeOf } open Option type Shape = Shape.Shape +type ShSet = ShapeSet.ShapeSet module Shape with... @@ -15,32 +17,32 @@ class Shape extends CachedHash with constructor Dyn() Lit(val l: Literal) - Arr(val shapes: Array[Shape]) - Class(val sym: ConcreteClassSymbol, val fields: Array[Shape]) // TODO: track the auxParams as well + Arr(val shapes: Array[ShSet]) + Class(val sym: ConcreteClassSymbol, val fields: Array[ShSet]) // TODO: track the auxParams as well fun show(s: Shape) = if s is Dyn then "Dyn" Lit(lit) then "Lit(" + printer.showLiteral(lit) + ")" - Arr(shapes) then "Arr(" + shapes.map(show).join(", ") + ")" - Class(sym, fields) then "Class(" + printer.showSymbol(sym) + ", {" + [...fields.entries()].map(e => e.0 + ": " + show(e.1)).join(", ") + "})" + Arr(shapes) then "Arr(" + shapes.map(_.toString()).join(", ") + ")" + Class(sym, fields) then "Class(" + printer.showSymbol(sym) + ", {" + [...fields.entries()].map(e => e.0 + ": " + e.1.toString()).join(", ") + "})" fun sel(s1: Shape, s2: Shape): Array[Shape] = if [s1, s2] is [Class(ConcreteClassSymbol(_, _, paramsOpt, auxParams, _), params), Lit(n)] and n is Str and paramsOpt is Some(paramsSymb) and paramsSymb.map(_.sym.name).indexOf(n) is -1 then [] - n then [params.(n)] + n then params.(n).values() [Class(ConcreteClassSymbol, p), Dyn] then [Dyn()] [Dyn, Lit(n)] and n is Str then [Dyn()] n is Int then [Dyn()] else throw Error("Unknown selection") [Arr(shapes), Lit(n)] and // n can be both string or integer - n < shapes.length then [shapes.(n)] // This utilizes the string and number conversion in JS lol + n < shapes.length then shapes.(n).values() // This utilizes the string and number conversion in JS lol else throw Error("Array out of bound") [Arr(shapes), Dyn] then - shapes + shapes.flatMap(_.values()) [Dyn, Dyn] then [Dyn()] else [] @@ -48,8 +50,14 @@ fun static(s: Shape) = if s is Dyn then false Lit(l) then not (l is Str and isPrimitiveType(l)) // redundant bracket? - Class(_, params) then params.every(static) - Arr(shapes) then shapes.every(static) + Class(_, params) then params.every(field => + let values = field.values() + values.length is 1 and static(values.0) + ) + Arr(shapes) then shapes.every(field => + let values = field.values() + values.length is 1 and static(values.0) + ) open Block { Case } @@ -57,8 +65,8 @@ fun silh(p: Case): Shape = if p is Block.Lit(l) then Lit(l) Block.Cls(clsSymb, path) then let paramsSize = if clsSymb.paramsOpt is Some(params) then params.length else 0 - Class(clsSymb, Array(paramsSize).fill(Dyn())) - Block.Tup(n) then Arr(Array(n).fill(Dyn())) + Class(clsSymb, Array(paramsSize).fill(ShapeSet.mkDyn())) + Block.Tup(n) then Arr(Array(n).fill(ShapeSet.mkDyn())) fun getActualClass(c) = if not (c."class" is undefined) then c.class else c fun isSubClassOf(d, b) = diff --git a/hkmc2/shared/src/test/mlscript-compile/ShapeSet.mls b/hkmc2/shared/src/test/mlscript-compile/ShapeSet.mls index 4d884cf796..f883aa02d8 100644 --- a/hkmc2/shared/src/test/mlscript-compile/ShapeSet.mls +++ b/hkmc2/shared/src/test/mlscript-compile/ShapeSet.mls @@ -34,21 +34,27 @@ class ShapeSet(val shapeset: Map[String, Shape]) extends CachedHash with module ShapeSet with fun empty = ShapeSet(new Map) -fun lift(s: Shape) = ShapeSet(new Map([[s.hash(), s]])) +fun makeShapeSet(entries) = + let shapeMap = new Map(entries) + let dyn = Dyn() + if shapeMap.has(dyn.hash()) then ShapeSet(new Map([[dyn.hash(), dyn]])) + else ShapeSet(shapeMap) + +fun lift(s: Shape) = makeShapeSet([[s.hash(), s]]) fun liftMany(arr: Array[Shape]) = - ShapeSet(new Map(arr.map(s => [s.hash(), s]))) + makeShapeSet(arr.map(s => [s.hash(), s])) fun union2(s1: ShapeSet, s2: ShapeSet) = if s1.isDyn() then s1 else if s2.isDyn() then s2 - else ShapeSet(new Map([...s1.shapeset, ...s2.shapeset])) + else makeShapeSet([...s1.shapeset, ...s2.shapeset]) fun union(...s) = if s.length is 0 then ShapeSet.empty else s.reduce((acc, next) => union2(acc, next)) -fun flat(arr: Array[ShapeSet]) = ShapeSet(new Map(arr.map(_.shapeset.entries().toArray()).flat())) +fun flat(arr: Array[ShapeSet]) = makeShapeSet(arr.map(_.shapeset.entries().toArray()).flat()) fun prod(xs) = xs.reduce((a, b) => a.flatMap(d => b.map(e => [...d, e])), [[]]) @@ -61,18 +67,10 @@ fun mkDyn() = lift(Dyn()) fun mkLit(l) = lift(Lit(l)) fun mkArr(shapes: Array[ShapeSet]) = - shapes - .map(_.shapeset.values().toArray()) - |> prod - .map(x => Arr(x)) - |> liftMany + lift(Arr(shapes)) fun mkClass(sym: ConcreteClassSymbol, params: Array[ShapeSet]) = - params - .map(_.shapeset.values().toArray()) - |> prod - .map(Class(sym, _)) - |> liftMany + lift(Class(sym, params)) fun mkClassFromMap(sym: ConcreteClassSymbol, paramsMap: Map[String, ShapeSet], psOpt: Option[Array[Array[Param]]]) = if sym is ConcreteClassSymbol(name, value, paramsOpt, auxParams, redir) then @@ -87,11 +85,7 @@ fun mkClassFromMap(sym: ConcreteClassSymbol, paramsMap: Map[String, ShapeSet], p ) let params = entries.map(_.1) let newSym = ConcreteClassSymbol(name, value, Some(keys), auxParams, redir) - params - .map(_.shapeset.values().toArray()) - |> prod - .map(Class(newSym, _)) - |> liftMany + lift(Class(newSym, params)) fun filterSet(s: ShapeSet, p: Block.Case) = s.flatMap(Shape.filter(_, p)) @@ -170,8 +164,8 @@ fun valOf(s : Shape) = if s is Dyn() then throw Error("valOf on Dyn") Lit(l) then l - Arr(shapes) then shapes.map((x, _, _) => valOf(x)) - Class(ConcreteClassSymbol(name, value, paramsOpt, auxParams, _), params) then new! value(...params.map(valOf)) + Arr(shapes) then shapes.map((x, _, _) => valOfSet(x)) + Class(ConcreteClassSymbol(name, value, paramsOpt, auxParams, _), params) then new! value(...params.map(valOfSet)) else throw Error("Unknown shape: " + s) fun valOfSet(s : ShapeSet) = @@ -189,7 +183,7 @@ private fun shape2path(s: Shape, allocs) = if s is Lit(l) then [Block.End(), Block.ValueLit(l)] Arr(v) then - let mapped = v.map(shape2path(_, allocs)) + let mapped = v.map(shapeset2path(_, allocs)) let blocks = mapped.map(_.0) blocks.reverse() let paths = mapped.map(_.1) @@ -199,7 +193,7 @@ private fun shape2path(s: Shape, allocs) = let fullBlock = foldr((acc, b) => Block.concat(b, acc))(tupAssign, ...blocks) [fullBlock, Block.ValueRef(tupSym)] Class(sym, fields) then - let mapped = fields.map(shape2path(_, allocs)) + let mapped = fields.map(shapeset2path(_, allocs)) let blocks = mapped.map(_.0) blocks.reverse() let paths = mapped.map(_.1) diff --git a/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls b/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls index 4b4626e326..214ecf4a79 100644 --- a/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls +++ b/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls @@ -500,10 +500,10 @@ fun buildShapeName(s: Shape): Str = if s is Dyn then "Dyn" Lit(lit) and lit is Str then "Str" + lit Lit(lit) then "Lit" + lit.toString().replace(".", "_p_") - Arr(shapes) then "Arr_" + shapes.map(buildShapeName).join("_") + "_end" + Arr(shapes) then "Arr_" + shapes.map(buildShapeSetName).join("_") + "_end" Class(sym, params) and params.length is 0 then sym.name - else sym.name + "_" + params.map(buildShapeName).join("_") + else sym.name + "_" + params.map(buildShapeSetName).join("_") else throw Error("unknown shape when building shape name" + s.toString()) fun buildShapeSetName(ss: ShapeSet): Str = @@ -579,9 +579,9 @@ fun specialize(cache: FunCache, funName, dflt, shapes) = fun collectClasses(s) = if s is Class(sym, params) then ctx.valueNameCtx.set(getActualClass(sym.value), sym) - params.forEach(collectClasses) + params.forEach(_.values().forEach(collectClasses)) Arr(shapes) then - shapes.forEach(collectClasses) + shapes.forEach(_.values().forEach(collectClasses)) else () if ctx.thisShape is Some(ts) then ts.values().forEach(collectClasses) else () ctx.ctx.values().forEach(_.values().forEach(collectClasses)) diff --git a/hkmc2/shared/src/test/mlscript/ShapeSetTest.mls b/hkmc2/shared/src/test/mlscript/ShapeSetTest.mls index 47e514654a..5c32b1ad63 100644 --- a/hkmc2/shared/src/test/mlscript/ShapeSetTest.mls +++ b/hkmc2/shared/src/test/mlscript/ShapeSetTest.mls @@ -31,7 +31,7 @@ union(mkLit(1), mkLit(2), mkLit(3)) //│ = {Lit(1),Lit(2),Lit(3)} mkArr([x, y]) -//│ = {Arr([Lit(1), Arr([Lit(1)])]),Arr([Lit(1), Arr([Lit(2)])]),Arr([Lit(2), Arr([Lit(1)])]),Arr([Lit(2), Arr([Lit(2)])])} +//│ = {Arr([{Lit(1),Lit(2)}, {Arr([Lit(1)]),Arr([Lit(2)])}])} class C(val a) val clsSym = ConcreteClassSymbol("C", C, Some([Param(None, Symbol("a"))]), [], false) @@ -47,12 +47,12 @@ val clsSym = ConcreteClassSymbol("C", C, Some([Param(None, Symbol("a"))]), [], f let x = liftMany([Class(clsSym, [Lit(42)]), Arr([Lit(1), Lit("a")])]) let y = liftMany([Lit(1), Lit("a")]) selSet(x, y) -//│ ═══[RUNTIME ERROR] Error: Array out of bound +//│ ═══[RUNTIME ERROR] TypeError: params[n1].values is not a function //│ x = {Arr([Lit(1), Lit("a")]),Class(ConcreteClassSymbol("C", fun C { class: class C }, Some([Param(None, Symbol("a"))]), [], false), [Lit(42)])} //│ y = {Lit("a"),Lit(1)} mkClass(clsSym, [mkLit(1)]) -//│ = {Class(ConcreteClassSymbol("C", fun C { class: class C }, Some([Param(None, Symbol("a"))]), [], false), [Lit(1)])} +//│ = {Class(ConcreteClassSymbol("C", fun C { class: class C }, Some([Param(None, Symbol("a"))]), [], false), [{Lit(1)}])} filterSet(liftMany([Lit(1), Lit("s"), Arr([Lit(1), Lit(2), Lit(3)])]), Tup(3)) //│ = {Arr([Lit(1), Lit(2), Lit(3)])} diff --git a/hkmc2/shared/src/test/mlscript/block-staging/ShapeSetHelpers.mls b/hkmc2/shared/src/test/mlscript/block-staging/ShapeSetHelpers.mls index f90eea60db..bdb8336457 100644 --- a/hkmc2/shared/src/test/mlscript/block-staging/ShapeSetHelpers.mls +++ b/hkmc2/shared/src/test/mlscript/block-staging/ShapeSetHelpers.mls @@ -28,7 +28,7 @@ mkDyn() == mkDyn() //│ = false mkArr([mkLit(0)]) -//│ = {Arr([Lit(0)])} +//│ = {Arr([{Lit(0)}])} assert(mkBot().isEmpty()) @@ -40,7 +40,7 @@ Shape.static(Shape.Lit("Hi")) valOf(Dyn()) //│ ═══[RUNTIME ERROR] Error: valOf on Dyn -valOf(Arr([Lit(1), Arr([Lit(2), Lit(3)])])) +valOf(Arr([mkLit(1), lift(Arr([mkLit(2), mkLit(3)]))])) //│ = [1, [2, 3]] :re @@ -53,7 +53,7 @@ valOfSet(mkLit(0)) // sel let arrSp = mkArr([mkLit(0), mkDyn()]) -//│ arrSp = {Arr([Lit(0), Dyn()])} +//│ arrSp = {Arr([{Lit(0)}, {Dyn()}])} selSet(arrSp, mkLit(0)) //│ = {Lit(0)} @@ -68,11 +68,10 @@ selSet(mkDyn(), mkLit(5)) class A(val a, val b) let aSym = ConcreteClassSymbol("A", A, Some([Param(None, Symbol("a")), Param(None, Symbol("b"))]), [], false) -:fixme -let a = Class(aSym, [Lit(42), Lit("c")]) -let x = liftMany([Dyn(), a, Arr([Lit(100), Lit(false), Lit(undefined)])]) -selSet(x, liftMany([Lit("a"), Lit(2)])) -//│ ═══[RUNTIME ERROR] Error: Array out of bound +let a = Class(aSym, [mkLit(42), mkLit("c")]) +let x = liftMany([Dyn(), a, Arr([mkLit(100), mkLit(false), mkLit(undefined)])]) +selSet(x, union(mkLit("a"), mkLit(2))) +//│ = {Dyn()} //│ a = Class( //│ ConcreteClassSymbol( //│ "A", @@ -81,21 +80,27 @@ selSet(x, liftMany([Lit("a"), Lit(2)])) //│ [], //│ false //│ ), -//│ [Lit(42), Lit("c")] +//│ [{Lit(42)}, {Lit("c")}] //│ ) -//│ x = {Arr([Lit(100), Lit(false), Lit(undefined)]),Class(ConcreteClassSymbol("A", fun A { class: class A }, Some([Param(None, Symbol("a")), Param(None, Symbol("b"))]), [], false), [Lit(42), Lit("c")]),Dyn()} +//│ x = {Dyn()} -selSet(lift(Arr([Dyn(), Lit(1), a])), mkLit(1)) +selSet(lift(Arr([mkDyn(), mkLit(1), lift(a)])), mkLit(1)) //│ = {Lit(1)} // union +mkClass(aSym, [union2(mkLit(42), mkLit(43)), union2(mkLit("c"), mkLit("d"))]) +//│ = {Class(ConcreteClassSymbol("A", fun A { class: class A }, Some([Param(None, Symbol("a")), Param(None, Symbol("b"))]), [], false), [{Lit(42),Lit(43)}, {Lit("c"),Lit("d")}])} + +mkArr([union2(mkLit(42), mkLit(43)), union2(mkLit("c"), mkLit("d"))]) +//│ = {Arr([{Lit(42),Lit(43)}, {Lit("c"),Lit("d")}])} + let x = liftMany([Lit(1), Lit(2)]) -let y = liftMany([Arr([Lit(2)]), Lit(1), Arr([Lit(1)])]) +let y = liftMany([Arr([mkLit(2)]), Lit(1), Arr([mkLit(1)])]) union(x, y) -//│ = {Arr([Lit(1)]),Arr([Lit(2)]),Lit(1),Lit(2)} +//│ = {Arr([{Lit(1)}]),Arr([{Lit(2)}]),Lit(1),Lit(2)} //│ x = {Lit(1),Lit(2)} -//│ y = {Arr([Lit(1)]),Arr([Lit(2)]),Lit(1)} +//│ y = {Arr([{Lit(1)}]),Arr([{Lit(2)}]),Lit(1)} // filterSet @@ -103,10 +108,10 @@ filterSet(mkDyn(), Block.Lit("a")) //│ = {Lit("a")} filterSet(mkDyn(), Block.Tup(2)) -//│ = {Arr([Dyn(), Dyn()])} +//│ = {Arr([{Dyn()}, {Dyn()}])} -let filterShapes = liftMany([Lit(1), Lit(null), Arr([Dyn()]), Arr([Lit(1), Lit(2), Lit(3)]), a]) -//│ filterShapes = {Arr([Dyn()]),Arr([Lit(1), Lit(2), Lit(3)]),Class(ConcreteClassSymbol("A", fun A { class: class A }, Some([Param(None, Symbol("a")), Param(None, Symbol("b"))]), [], false), [Lit(42), Lit("c")]),Lit(1),Lit(null)} +let filterShapes = liftMany([Lit(1), Lit(null), Arr([mkDyn()]), Arr([mkLit(1), mkLit(2), mkLit(3)]), a]) +//│ filterShapes = {Arr([{Dyn()}]),Arr([{Lit(1)}, {Lit(2)}, {Lit(3)}]),Class(ConcreteClassSymbol("A", fun A { class: class A }, Some([Param(None, Symbol("a")), Param(None, Symbol("b"))]), [], false), [{Lit(42)}, {Lit("c")}]),Lit(1),Lit(null)} // wildcard is represented as dflt in Match @@ -116,13 +121,13 @@ filterSet(filterShapes, Block.Lit(1)) assert(filterSet(filterShapes, Block.Lit(2)).isEmpty()) filterSet(filterShapes, Block.Cls(aSym, undefined)) -//│ = {Class(ConcreteClassSymbol("A", fun A { class: class A }, Some([Param(None, Symbol("a")), Param(None, Symbol("b"))]), [], false), [Lit(42), Lit("c")])} +//│ = {Class(ConcreteClassSymbol("A", fun A { class: class A }, Some([Param(None, Symbol("a")), Param(None, Symbol("b"))]), [], false), [{Lit(42)}, {Lit("c")}])} filterSet(filterShapes, Block.Cls(Symbol("Int"), undefined)) //│ = {Lit(1)} filterSet(filterShapes, Tup(3)) -//│ = {Arr([Lit(1), Lit(2), Lit(3)])} +//│ = {Arr([{Lit(1)}, {Lit(2)}, {Lit(3)}])} filterSet(filterShapes, Tup(4)) //│ = {} @@ -197,7 +202,7 @@ sop(ctx, selPath) //│ C = ConcreteClassSymbol("C", undefined, Some([Param(None, "a")]), [], false) //│ ctx = Ctx( //│ Map(1) { -//│ "Symbol(x)" => {Class(ConcreteClassSymbol("C", undefined, Some([Param(None, "a")]), [], false), [Lit("pass")])} +//│ "Symbol(x)" => {Class(ConcreteClassSymbol("C", undefined, Some([Param(None, "a")]), [], false), [{Lit("pass")}])} //│ }, //│ Map(0) {}, //│ Map(0) {}, @@ -214,7 +219,7 @@ sor(Ctx.empty(), tup) //│ = [ //│ End(), //│ Tuple([Arg(ValueLit(1)), Arg(ValueLit(true))]), -//│ {Arr([Lit(1), Lit(true)])} +//│ {Arr([{Lit(1)}, {Lit(true)}])} //│ ] //│ tup = Tuple([Arg(ValueLit(1)), Arg(ValueLit(true))]) @@ -236,7 +241,7 @@ sor(Ctx.empty(), inst) //│ ), //│ [Arg(ValueLit(123))] //│ ), -//│ {Class(ConcreteClassSymbol("C", fun C { class: class C }, Some([Symbol("p")]), [], false), [Lit(123)])} +//│ {Class(ConcreteClassSymbol("C", fun C { class: class C }, Some([Symbol("p")]), [], false), [{Lit(123)}])} //│ ] //│ c = ConcreteClassSymbol( //│ "C", @@ -384,7 +389,7 @@ module M with :ignore val MSym = ValueRef(ModuleSymbol("M", M, false)) //│ ╔══[COMPILATION ERROR] Unexpected moduleful reference of type M. -//│ ║ l.385: val MSym = ValueRef(ModuleSymbol("M", M, false)) +//│ ║ l.390: val MSym = ValueRef(ModuleSymbol("M", M, false)) //│ ║ ^ //│ ╙── Module argument passed to a non-module parameter. //│ MSym = ValueRef(ModuleSymbol("M", class M, false)) From ee72d27937181f875bee302214d88983ef73ce04 Mon Sep 17 00:00:00 2001 From: NeilKleistGao Date: Thu, 28 May 2026 16:57:21 +0800 Subject: [PATCH 4/9] WIP: cache static calls --- .../mlscript-compile/SpecializeHelpers.mls | 81 ++++++-- .../staging/out/AdjacentClasses.mls | 5 +- .../staging/out/CombinedModule.mls | 15 +- .../staging/out/LinkingGeneratedClasses.mls | 22 +- .../staging/out/SimpleStagedExample.mls | 5 +- .../staging/out/StagedClass.mls | 28 +-- .../staging/out/Transform3D.mls | 194 ++++++++++-------- .../test/mlscript/block-staging/ShapeProp.mls | 12 +- .../block-staging/ShapeSetHelpers.mls | 7 +- .../block-staging/StagedRegExpTest.mls | 20 +- 10 files changed, 224 insertions(+), 165 deletions(-) diff --git a/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls b/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls index 214ecf4a79..e7c884c574 100644 --- a/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls +++ b/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls @@ -28,13 +28,24 @@ fun showCtxPath(p) = if p is else throw Error(l) ValueLit(lit) then "Lit(" + lit.toString() + ")" +fun staticCallKey(f, argShapes) = + showCtxPath(f) + "(" + argShapes.map(_.hash()).join(",") + ")" + +class StaticCallEntry( + val block: Block.Block, + val path: Path, + val shape: ShapeSet, +) + class Ctx( // ctx tracks shapes of variables val ctx: Map[String, ShapeSet], // valueNameCtx tracks the assigned name of the pointer in the previous module for the current runtime value val valueNameCtx: Map[Class, ConcreteClassSymbol | ModuleSymbol], // valDefnCtx tracks fields defined by ValDefn during shape prop of constructor - val valDefnCtx: Map[String, ShapeSet] + val valDefnCtx: Map[String, ShapeSet], + // staticCallCtx tracks results of non-staged calls with static arguments + val staticCallCtx: Map[String, StaticCallEntry], // allocs tracks the new variables allocated val allocs: Array[Block.Symbol], // thisShape stores the shapeset of this, e.g., C1(1) U C1(2) @@ -45,11 +56,13 @@ class Ctx( if ctx.has(ps) then Some(ctx.get(ps)) else None fun getValDefn(name) = if valDefnCtx.has(name) then Some(valDefnCtx.get(name)) else None - fun clone = Ctx(new Map(ctx), valueNameCtx, new Map(valDefnCtx), allocs, thisShape) - // For propagation of instantiation of derived class, - // we need to keep track of fields defined in parent class, - // which is stored in valDefnCtx - fun clearCtx = Ctx(new Map(), valueNameCtx, valDefnCtx, allocs, thisShape) + fun getStaticCall(key) = + if staticCallCtx.has(key) then Some(staticCallCtx.get(key)) else None + fun addStaticCall(key, entry) = + staticCallCtx.set(key, entry) + this + fun clone = Ctx(new Map(ctx), valueNameCtx, new Map(valDefnCtx), new Map(staticCallCtx), allocs, thisShape) + fun clearCtx = Ctx(new Map(), valueNameCtx, new Map(), new Map(staticCallCtx), allocs, thisShape) fun sub(other: Ctx) = let res = new Map() fun otherIsBot(ps) = @@ -74,7 +87,7 @@ class Ctx( valDefnCtx.set(ps, ss) this module Ctx with - fun empty() = Ctx(new Map(), new Map(), new Map(), mut [], None) + fun empty() = Ctx(new Map(), new Map(), new Map(), new Map(), mut [], None) class FunEntry( val defn: FunDefn, @@ -287,6 +300,27 @@ fun sorBuiltinOp(ctx, r, f, name, args) = if args is let newArgs = evaledArgs.map(e => Arg(if e.1 is Path then e.1 else throw Error("expected path"))) [fullBlk, Call(f, newArgs), mkDyn()] +fun sorUnknownCall(ctx, f, args) = + let evaledArgs = args.map(a => sor(ctx, a.value)) + let fullBlk = foldl((acc, e) => concat(acc, e.0))(End(), ...evaledArgs) + let newArgs = evaledArgs.map(e => Arg(if e.1 is Path then e.1 else throw Error("expected path"))) + [fullBlk, Call(f, newArgs), mkDyn()] + +fun sorStaticModuleCall(ctx, f, value, fld, args, argShapes) = + let key = staticCallKey(f, argShapes) + if ctx.getStaticCall(key) is + Some(entry) then [End(), entry.path, entry.shape] + None then + let fimp = value.(fld) + let evaluated = fimp(...argShapes.map(valOfSet)) + let inferredShape = sov(evaluated) + if staticSet(inferredShape) then + let evaluatedPath = shapeset2path(inferredShape, ctx.allocs) + let entry = StaticCallEntry(evaluatedPath.0, evaluatedPath.1, inferredShape) + ctx.addStaticCall(key, entry) + [entry.block, entry.path, entry.shape] + else sorUnknownCall(ctx, f, args) + fun sorCall(ctx, r, f, args, argShapes) = if f is Select(Select(ValueRef(Symbol("runtime")), Symbol("Tuple")), Symbol("get")) // runtime.Tuple.get is generated by the compiler in the IR and args is [Arg(scrut), Arg(litArg)] then @@ -316,18 +350,9 @@ fun sorCall(ctx, r, f, args, argShapes) = if f is [End(), Call(callPath, args), res.1] else throw Error("module " + name + " is staged but function " + fld + " is not found in generator map") - argShapes.every(staticSet) and // non staged function and params known - let fimp = value.(fld) - let evaluated = fimp(...argShapes.map(valOfSet)) - let inferredShape = sov(evaluated) - staticSet(inferredShape) then // shape can be inferred from runtime value - let evaluatedPath = shapeset2path(inferredShape, ctx.allocs) - [evaluatedPath.0, evaluatedPath.1, inferredShape] - else - let evaledArgs = args.map(a => sor(ctx, a.value)) - let fullBlk = foldl((acc, e) => concat(acc, e.0))(End(), ...evaledArgs) - let newArgs = evaledArgs.map(e => Arg(if e.1 is Path then e.1 else throw Error("expected path"))) - [fullBlk, Call(f, newArgs), mkDyn()] // non staged function and some params unknown + argShapes.every(staticSet) then // non staged function and params known + sorStaticModuleCall(ctx, f, value, fld, args, argShapes) + else sorUnknownCall(ctx, f, args) // non staged function and some params unknown // else throw Error("unknown call in sor: " + r.toString()) // shape of result: return [blk, res, s] @@ -423,7 +448,7 @@ fun prop(ctx, b) = if b is Scoped(symbols, rest) then symbols.forEach(x => ctx.add(ValueRef(x), mkBot())) let newAllocs = mut [] - let newCtx = Ctx(new Map(ctx.ctx), ctx.valueNameCtx, ctx.valDefnCtx, newAllocs, ctx.thisShape) + let newCtx = Ctx(new Map(ctx.ctx), ctx.valueNameCtx, ctx.valDefnCtx, new Map(ctx.staticCallCtx), newAllocs, ctx.thisShape) let res = prop(newCtx, rest) [wrapScoped([...symbols, ...newAllocs], res.0), res.1, res.2] Assign(x, Call(Select(p, Symbol(f)), args), restBlock) and p is // TODO Can we deduplicate this? @@ -542,6 +567,18 @@ class ValueCollection(defn: Map[Class, Str]) extends Printer(None) with else () "" +fun isStaticShapePath(s: Shape) = if s is + Lit(_) then true + Arr(shapes) then shapes.every(x => x is Lit) + Class(_, fields) then fields.every(x => x is Lit) + else false + +fun isStaticSetPath(ss: ShapeSet) = + staticSet(ss) and ss.values().every(isStaticShapePath) + +fun isStaticPath(ss: ShapeSet) = + isStaticSetPath(ss) + fun specialize(cache: FunCache, funName, dflt, shapes) = // FIXME // right now the function name depends on the parameter constraints @@ -561,7 +598,7 @@ fun specialize(cache: FunCache, funName, dflt, shapes) = let ctx = if isMethod then let clsSymb = cache.owner - Ctx(new Map(), new Map(), new Map(), mut [], Some(shapes.(0).(0))) + Ctx(new Map(), new Map(), new Map(), new Map(), mut [], Some(shapes.(0).(0))) else Ctx.empty() // console.log("checking", ctx.valueNameCtx, Printer.default.showBlock(body)) @@ -594,7 +631,7 @@ fun specialize(cache: FunCache, funName, dflt, shapes) = let actualRetShape = res.1 actualRetShape.values().forEach(collectClasses) - let finalBody = if staticSet(actualRetShape) then + let finalBody = if isStaticPath(actualRetShape) then let allocs = mut [] let v2p = shapeset2path(actualRetShape, allocs) wrapScoped(allocs, concat(v2p.0, Return(v2p.1, false))) diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/AdjacentClasses.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/AdjacentClasses.mls index 31b8773fb5..bb6a3ccc18 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/AdjacentClasses.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/AdjacentClasses.mls @@ -5,7 +5,4 @@ module AdjacentClasses with () class D() with () - fun f() = - let {obj_11} - obj_11 = new C(1) - obj_11 \ No newline at end of file + fun f() = new AdjacentClasses.C(1) \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls index 2b1f62bfb3..96f0f8691a 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls @@ -48,10 +48,7 @@ module CombinedModule with tmp11 = 0 z = 0 y1 + 0 - fun spaces() = - let {tup_3} - tup_3 = ["\t", "\n", "\r"] - tup_3 + fun spaces() = ["\t", "\n", "\r"] private fun f_SimpleStagedExample_sp_0(x, y) = 5 private fun fib_SimpleStagedExample_sp_0(n) = 55 private fun fib_SimpleStagedExample_sp_1(n) = 34 @@ -69,13 +66,13 @@ module CombinedModule with module LinkingGeneratedClasses with class D fun f() = + let {obj_3} + obj_3 = new! LinkingGeneratedClasses__Legacy."Function$$LinkingGeneratedClasses"() + obj_3 + fun g() = let {obj_4} - obj_4 = new! LinkingGeneratedClasses__Legacy."Function$$LinkingGeneratedClasses"() + obj_4 = new! LinkingGeneratedClasses__Legacy."Function$1$LinkingGeneratedClasses"() obj_4 - fun g() = - let {obj_5} - obj_5 = new! LinkingGeneratedClasses__Legacy."Function$1$LinkingGeneratedClasses"() - obj_5 fun test1 = let {obj_1} obj_1 = new! LinkingGeneratedClasses__Legacy."C$LinkingGeneratedClasses"() diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls index bacd42b125..6624fdc918 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls @@ -6,17 +6,17 @@ class S with module LinkingGeneratedClasses with class D fun f() = + let {obj_3} + obj_3 = new! LinkingGeneratedClasses__Legacy."Function$$LinkingGeneratedClasses"() + obj_3 + fun g() = let {obj_4} - obj_4 = new! LinkingGeneratedClasses__Legacy."Function$$LinkingGeneratedClasses"() + obj_4 = new! LinkingGeneratedClasses__Legacy."Function$1$LinkingGeneratedClasses"() obj_4 - fun g() = - let {obj_5} - obj_5 = new! LinkingGeneratedClasses__Legacy."Function$1$LinkingGeneratedClasses"() - obj_5 fun test1 = - let {obj_2} - obj_2 = new! LinkingGeneratedClasses__Legacy."C$LinkingGeneratedClasses"() - obj_2 + let {obj_1} + obj_1 = new! LinkingGeneratedClasses__Legacy."C$LinkingGeneratedClasses"() + obj_1 fun test2(x) = let {tmp} if x is @@ -25,6 +25,6 @@ module LinkingGeneratedClasses with tmp.f_S_sp_0(1) else new S() fun test3 = - let {obj_3} - obj_3 = new D() - obj_3 \ No newline at end of file + let {obj_2} + obj_2 = new D() + obj_2 \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/SimpleStagedExample.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/SimpleStagedExample.mls index a0105adf9a..a3e45544ce 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/SimpleStagedExample.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/SimpleStagedExample.mls @@ -45,10 +45,7 @@ module SimpleStagedExample with tmp11 = 0 z = 0 y1 + 0 - fun spaces() = - let {tup_1} - tup_1 = ["\t", "\n", "\r"] - tup_1 + fun spaces() = ["\t", "\n", "\r"] private fun f_SimpleStagedExample_sp_0(x, y) = 5 private fun fib_SimpleStagedExample_sp_0(n) = 55 private fun fib_SimpleStagedExample_sp_1(n) = 34 diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls index d9e6051e95..0b1fc95c3a 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls @@ -18,9 +18,9 @@ module StagedClass with class C() with () fun h() = - let {obj_6} - obj_6 = new D() - obj_6 + let {obj_5} + obj_5 = new D() + obj_5 class X(val x) with () fun f(y) = @@ -38,9 +38,9 @@ module StagedClass with tmp2 = x + y StagedClass.helpFoo(tmp2) private fun f_X_sp_0(y) = - let {obj_9} - obj_9 = new Bar(0) - obj_9 + let {scrut} + scrut = true + new StagedClass.Bar(x) fun bar(b) = if b is true then Bar(0) @@ -63,15 +63,15 @@ module StagedClass with y4 + 1 else -1 fun foo() = + let {obj_6} + obj_6 = new Foo() + obj_6 + fun g() = let {obj_7} - obj_7 = new Foo() + obj_7 = new D() obj_7 - fun g() = - let {obj_8} - obj_8 = new D() - obj_8 fun helpFoo(x) = StagedClass__Legacy."Helper$StagedClass".foo(x) fun xx() = - let {obj_10} - obj_10 = new Bar(0) - obj_10 \ No newline at end of file + let {tmp3} + tmp3 = new X(0) + tmp3.f_X_sp_0(1) \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls index 6319c3252b..d68f78e8b9 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls @@ -143,10 +143,9 @@ module Transform3D with tmp22 = Transform3D__Legacy."Mx$Transform3D".init(tmp21, 0) new Matrix(tmp22, r, c) private fun ident_Transform3D_sp_0(w) = - let {tup_26, obj_27} - tup_26 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_27 = new Matrix(tup_26, 4, 4) - obj_27 + let {m3} + m3 = zeros_Transform3D_sp_0(w, w) + iterID_Transform3D_sp_1(m3, w, w) private fun iterCol_Transform3D_sp_0(m, x, y, colX, colY, i, j) = let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = ===(j, 0) @@ -699,30 +698,41 @@ module Transform3D with tmp20 = i - 1 iterID_Transform3D_sp_0(tmp19, w, tmp20) private fun iterID_Transform3D_sp_1(m, w, i) = - let {tup_24, obj_25} - tup_24 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_25 = new Matrix(tup_24, 4, 4) - obj_25 + let {scrut3, tmp17, tmp18, tmp19, tmp20} + scrut3 = false + tmp17 = 0 + tmp18 = 0 + tmp19 = update_Transform3D_sp_3(m, tmp17, tmp18, 1) + tmp20 = 3 + iterID_Transform3D_sp_2(tmp19, w, tmp20) private fun iterID_Transform3D_sp_2(m, w, i) = - let {tup_22, obj_23} - tup_22 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_23 = new Matrix(tup_22, 4, 4) - obj_23 + let {scrut3, tmp17, tmp18, tmp19, tmp20} + scrut3 = false + tmp17 = 1 + tmp18 = 1 + tmp19 = update_Transform3D_sp_4(m, tmp17, tmp18, 1) + tmp20 = 2 + iterID_Transform3D_sp_3(tmp19, w, tmp20) private fun iterID_Transform3D_sp_3(m, w, i) = - let {tup_20, obj_21} - tup_20 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_21 = new Matrix(tup_20, 4, 4) - obj_21 + let {scrut3, tmp17, tmp18, tmp19, tmp20} + scrut3 = false + tmp17 = 2 + tmp18 = 2 + tmp19 = update_Transform3D_sp_5(m, tmp17, tmp18, 1) + tmp20 = 1 + iterID_Transform3D_sp_4(tmp19, w, tmp20) private fun iterID_Transform3D_sp_4(m, w, i) = - let {tup_18, obj_19} - tup_18 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_19 = new Matrix(tup_18, 4, 4) - obj_19 + let {scrut3, tmp17, tmp18, tmp19, tmp20} + scrut3 = false + tmp17 = 3 + tmp18 = 3 + tmp19 = update_Transform3D_sp_6(m, tmp17, tmp18, 1) + tmp20 = 0 + iterID_Transform3D_sp_5(tmp19, w, tmp20) private fun iterID_Transform3D_sp_5(m, w, i) = - let {tup_16, obj_17} - tup_16 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_17 = new Matrix(tup_16, 4, 4) - obj_17 + let {scrut3, tmp17, tmp18, tmp19, tmp20} + scrut3 = true + m private fun iterRow_Transform3D_sp_0(m, x, y, rowX, colX, colY, i) = let {scrut2, tmp14, tmp15, tmp16} scrut2 = ===(i, 0) @@ -3650,15 +3660,17 @@ module Transform3D with tmp46 = update_Transform3D_sp_19(tmp45, 1, 0, s2) update_Transform3D_sp_11(tmp46, 1, 1, c4) private fun scale_Transform3D_sp_0(sx, sy, sz) = - let {tup_51, obj_52} - tup_51 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] - obj_52 = new Matrix(tup_51, 4, 4) - obj_52 + let {tmp29, tmp30, tmp31} + tmp29 = ident_Transform3D_sp_0(4) + tmp30 = update_Transform3D_sp_33(tmp29, 0, 0, sx) + tmp31 = update_Transform3D_sp_34(tmp30, 1, 1, sy) + update_Transform3D_sp_35(tmp31, 2, 2, sz) private fun transform_Transform3D_sp_0(dx, dy, dz) = - let {tup_40, obj_41} - tup_40 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] - obj_41 = new Matrix(tup_40, 4, 4) - obj_41 + let {tmp26, tmp27, tmp28} + tmp26 = ident_Transform3D_sp_0(4) + tmp27 = update_Transform3D_sp_30(tmp26, 0, 3, dx) + tmp28 = update_Transform3D_sp_31(tmp27, 1, 3, dy) + update_Transform3D_sp_32(tmp28, 2, 3, dz) private fun update_Transform3D_sp_0(m, i, j, v) = let {tmp23, tmp24, tmp25} tmp23 = *(i, m.c) @@ -3798,40 +3810,54 @@ module Transform3D with tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, v) new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_3(m, i, j, v) = - let {tup_5, obj_6} - tup_5 = [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - obj_6 = new Matrix(tup_5, 4, 4) - obj_6 + let {tmp23, tmp24, tmp25, tup_2} + tmp23 = 0 + tmp24 = 0 + tup_2 = [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + tmp25 = tup_2 + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_30(m, i, j, v) = - let {tup_32, obj_33} - tup_32 = [1, 0, 0, 11, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_33 = new Matrix(tup_32, 4, 4) - obj_33 + let {tmp23, tmp24, tmp25, tup_7} + tmp23 = 0 + tmp24 = 3 + tup_7 = [1, 0, 0, 11, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_7 + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_31(m, i, j, v) = - let {tup_35, obj_36} - tup_35 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 0, 0, 0, 0, 1] - obj_36 = new Matrix(tup_35, 4, 4) - obj_36 + let {tmp23, tmp24, tmp25, tup_8} + tmp23 = 4 + tmp24 = 7 + tup_8 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_8 + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_32(m, i, j, v) = - let {tup_38, obj_39} - tup_38 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] - obj_39 = new Matrix(tup_38, 4, 4) - obj_39 + let {tmp23, tmp24, tmp25, tup_9} + tmp23 = 8 + tmp24 = 11 + tup_9 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] + tmp25 = tup_9 + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_33(m, i, j, v) = - let {tup_43, obj_44} - tup_43 = [0.4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_44 = new Matrix(tup_43, 4, 4) - obj_44 + let {tmp23, tmp24, tmp25, tup_10} + tmp23 = 0 + tmp24 = 0 + tup_10 = [0.4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_10 + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_34(m, i, j, v) = - let {tup_46, obj_47} - tup_46 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_47 = new Matrix(tup_46, 4, 4) - obj_47 + let {tmp23, tmp24, tmp25, tup_11} + tmp23 = 4 + tmp24 = 5 + tup_11 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_11 + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_35(m, i, j, v) = - let {tup_49, obj_50} - tup_49 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] - obj_50 = new Matrix(tup_49, 4, 4) - obj_50 + let {tmp23, tmp24, tmp25, tup_12} + tmp23 = 8 + tmp24 = 10 + tup_12 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] + tmp25 = tup_12 + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_36(m, i, j, v) = let {tmp23, tmp24, tmp25} tmp23 = 3 @@ -3839,20 +3865,26 @@ module Transform3D with tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, 1) new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_4(m, i, j, v) = - let {tup_8, obj_9} - tup_8 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - obj_9 = new Matrix(tup_8, 4, 4) - obj_9 + let {tmp23, tmp24, tmp25, tup_3} + tmp23 = 4 + tmp24 = 5 + tup_3 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + tmp25 = tup_3 + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_5(m, i, j, v) = - let {tup_11, obj_12} - tup_11 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0] - obj_12 = new Matrix(tup_11, 4, 4) - obj_12 + let {tmp23, tmp24, tmp25, tup_4} + tmp23 = 8 + tmp24 = 10 + tup_4 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0] + tmp25 = tup_4 + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_6(m, i, j, v) = - let {tup_14, obj_15} - tup_14 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_15 = new Matrix(tup_14, 4, 4) - obj_15 + let {tmp23, tmp24, tmp25, tup_5} + tmp23 = 12 + tmp24 = 15 + tup_5 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_5 + new Matrix(tmp25, m.r, m.c) private fun update_Transform3D_sp_7(m, i, j, v) = let {tmp23, tmp24, tmp25} tmp23 = 0 @@ -3872,12 +3904,14 @@ module Transform3D with tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 11, v) new Matrix(tmp25, m.r, m.c) private fun zeros_Transform3D_sp_0(r, c) = - let {tup_2, obj_3} - tup_2 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - obj_3 = new Matrix(tup_2, 4, 4) - obj_3 + let {tmp21, tmp22, tup_1} + tmp21 = 16 + tup_1 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + tmp22 = tup_1 + new Matrix(tmp22, r, c) private fun zeros_Transform3D_sp_1(r, c) = - let {tup_29, obj_30} - tup_29 = [0, 0, 0, 0] - obj_30 = new Matrix(tup_29, 4, 1) - obj_30 \ No newline at end of file + let {tmp21, tmp22, tup_6} + tmp21 = 4 + tup_6 = [0, 0, 0, 0] + tmp22 = tup_6 + new Matrix(tmp22, r, c) \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls b/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls index e8d0113dfc..da52b9f5dd 100644 --- a/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls +++ b/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls @@ -222,14 +222,8 @@ print(Dispatching."cache$Dispatching") //│ > tmp3 = new L3.class(3) //│ > m = pick_Dispatching_sp_2(tmp2, tmp3, b) //│ > twice_Dispatching_sp_3(m, 5) -//│ > private fun pick_Dispatching_sp_0(x, y, b) = -//│ > let {obj_1} -//│ > obj_1 = new L2.class(2) -//│ > obj_1 -//│ > private fun pick_Dispatching_sp_1(x, y, b) = -//│ > let {obj_2} -//│ > obj_2 = new L3.class(3) -//│ > obj_2 +//│ > private fun pick_Dispatching_sp_0(x, y, b) = x +//│ > private fun pick_Dispatching_sp_1(x, y, b) = y //│ > private fun pick_Dispatching_sp_2(x, y, b) = //│ > if b is //│ > true then x @@ -325,7 +319,7 @@ staged module Inheritance with else "not B" Inheritance."test_gen"() -//│ = ["test", {Lit(5)}] +//│ = ["test", {}] staged module NonTermination with fun f(x, y) = if y diff --git a/hkmc2/shared/src/test/mlscript/block-staging/ShapeSetHelpers.mls b/hkmc2/shared/src/test/mlscript/block-staging/ShapeSetHelpers.mls index bdb8336457..d34cee8804 100644 --- a/hkmc2/shared/src/test/mlscript/block-staging/ShapeSetHelpers.mls +++ b/hkmc2/shared/src/test/mlscript/block-staging/ShapeSetHelpers.mls @@ -141,7 +141,7 @@ open SpecializeHelpers { Ctx, sop, sor, prop } let ctx = Ctx.empty() let x = ValueRef(Symbol("x")) -//│ ctx = Ctx(Map(0) {}, Map(0) {}, Map(0) {}, [], None) +//│ ctx = Ctx(Map(0) {}, Map(0) {}, Map(0) {}, Map(0) {}, [], None) //│ x = ValueRef(Symbol("x")) ctx.add(x, mkLit(1)) @@ -166,6 +166,7 @@ ctx2.get(y) //│ Map(2) {"Symbol(x)" => {Lit(1),Lit(2)}, "Symbol(y)" => {Lit("a"),Lit("b")}}, //│ Map(0) {}, //│ Map(0) {}, +//│ Map(0) {}, //│ [], //│ None //│ ) @@ -206,6 +207,7 @@ sop(ctx, selPath) //│ }, //│ Map(0) {}, //│ Map(0) {}, +//│ Map(0) {}, //│ [], //│ None //│ ) @@ -389,7 +391,7 @@ module M with :ignore val MSym = ValueRef(ModuleSymbol("M", M, false)) //│ ╔══[COMPILATION ERROR] Unexpected moduleful reference of type M. -//│ ║ l.390: val MSym = ValueRef(ModuleSymbol("M", M, false)) +//│ ║ l.392: val MSym = ValueRef(ModuleSymbol("M", M, false)) //│ ║ ^ //│ ╙── Module argument passed to a non-module parameter. //│ MSym = ValueRef(ModuleSymbol("M", class M, false)) @@ -414,6 +416,7 @@ val ctxXY = Ctx.empty() //│ Map(2) {"Symbol(x)" => {Lit(10)}, "Symbol(y)" => {Lit(32)}}, //│ Map(0) {}, //│ Map(0) {}, +//│ Map(0) {}, //│ [], //│ None //│ ) diff --git a/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls b/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls index 519f377419..48a6ceecec 100644 --- a/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls +++ b/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls @@ -9,16 +9,16 @@ StagedRegExp."generate"("../StagedRegExp.mls", "./hkmc2/shared/src/test/mlscript //│ FAILURE: Unexpected runtime error //│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) //│ ═══[RUNTIME ERROR] RangeError: Maximum call stack size exceeded -//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:549:56) -//│ at SpecializeHelpers.sor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2433:30) -//│ at lambda (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2338:34) -//│ at Array.map () -//│ at SpecializeHelpers.sorBuiltinOp (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2340:42) -//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:782:40) -//│ at SpecializeHelpers.sor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2433:30) -//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:1259:52) -//│ at SpecializeHelpers.prop (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2657:30) -//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:1047:46) +//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:582:56) +//│ at SpecializeHelpers.prop (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2731:30) +//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:1046:46) +//│ at SpecializeHelpers.prop (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2731:30) +//│ at SpecializeHelpers.specialize (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:3044:35) +//│ at mkUnion_gen (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mjs:10964:30) +//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:736:49) +//│ at SpecializeHelpers.sor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2507:30) +//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:917:58) +//│ at SpecializeHelpers.prop (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2731:30) import "../../mlscript-compile/staging/out/StagedRegExp.mls" From 5142c4129b59a3ca041391e9853c13a2657276ce Mon Sep 17 00:00:00 2001 From: NeilKleistGao Date: Thu, 28 May 2026 17:06:00 +0800 Subject: [PATCH 5/9] WIP: Add fixme for this generation --- .../mlscript-compile/staging/StagedRegExp.mls | 18 +- .../staging/out/StagedRegExp.mls | 2706 +++++++++++++++++ .../block-staging/StagedRegExpTest.mls | 474 +-- 3 files changed, 2760 insertions(+), 438 deletions(-) create mode 100644 hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mls b/hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mls index 6404d05f61..a677539036 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mls @@ -36,12 +36,12 @@ staged module StagedRegExp with staged class DedupSet(val arr) with fun addImp(e, i) = let s = len(arr) - if i == s then new DedupSet(push(arr, e)) + if s - i == s then new DedupSet(push(arr, e)) else let e' = arr.(i) - if e.eq(e') then this else addImp(e, i + 1) + if e.eq(e') then this else addImp(e, i - 1) fun add(e) = - addImp(e, 0) + addImp(e, len(arr)) staged class RegExp() with fun derive(c) @@ -95,11 +95,11 @@ staged module StagedRegExp with fun notDigit() = new Not(CharSet.digit()) fun mkUnion(arr, i, s) = - if i == s - 1 then arr.(i) + if s - i == s - 1 then arr.(i) else if arr.(i) is - Nothing() then mkUnion(arr, i + 1, s) - else new Union(arr.(i), mkUnion(arr, i + 1, s)) + Nothing() then mkUnion(arr, i - 1, s) + else new Union(arr.(i), mkUnion(arr, i - 1, s)) staged class Union(val p1, val p2) extends RegExp with fun derive(c) = (new Union(p1.derive(c), p2.derive(c))).normalize() @@ -109,15 +109,15 @@ staged module StagedRegExp with let p2' = if p2 is Union then p2.flat() else [p2] concat(p1', p2') fun iter(st, arr, i, s) = - if i == s then st - else iter(st.add(arr.(i)), arr, i + 1, s) + if s - i == s then st + else iter(st.add(arr.(s - i)), arr, i - 1, s) fun normalize() = let p1' = p1.normalize() let p2' = p2.normalize() let arr1 = if p1' is Union then p1'.flat() else [p1'] let arr2 = if p2' is Union then p2'.flat() else [p2'] let s = iter(new DedupSet(arr1), arr2, 0, len(arr2)) - mkUnion(s.arr, 0, len(s.arr)) + mkUnion(s.arr, len(s.arr), len(s.arr)) fun eq(other) = let n = other.normalize() if n is diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls new file mode 100644 index 0000000000..c21f58c8d5 --- /dev/null +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls @@ -0,0 +1,2706 @@ +#config(noFreeze: true, noModuleCheck: true, deadParamElim: Some(DeadParamElim(debug: false, mono: true))) +import "../StagedRegExp.mls" as StagedRegExp__Legacy +module StagedRegExp with + class Some(val x) + class None + class DedupSet(val arr) with + () + fun add(e) = + let {tmp3} + tmp3 = StagedRegExp.len(arr) + addImp(e, tmp3) + fun addImp(e, i) = + let {s, scrut, e__, scrut1, tmp, tmp1, tmp2} + s = StagedRegExp.len(arr) + tmp = s - i + scrut = ==(tmp, s) + if scrut is + true then + tmp1 = StagedRegExp.push(arr, e) + new StagedRegExp.DedupSet.class(tmp1) + else + e__ = arr.(i) + scrut1 = e.eq(e__) + if scrut1 is + true then DedupSet + else + tmp2 = i - 1 + addImp(e, tmp2) + class RegExp() with + () + class Nothing() extends RegExp() with + () + fun canBeEmpty() = false + fun derive(c) = Nothing + fun eq(other) = + if other is + Nothing then true + else false + fun normalize() = Nothing + fun startsWith(c) = false + private fun canBeEmpty_Nothing_sp_0() = false + private fun derive_Nothing_sp_0(c) = Nothing + private fun normalize_Nothing_sp_0() = Nothing + private fun startsWith_Nothing_sp_0(c) = false + class Empty() extends RegExp() with + () + fun canBeEmpty() = true + fun derive(c) = + let {obj_1} + obj_1 = new Nothing() + obj_1 + fun eq(other) = + if other is + Empty then true + else false + fun normalize() = Empty + fun startsWith(c) = false + private fun canBeEmpty_Empty_sp_0() = true + private fun derive_Empty_sp_0(c) = + let {obj_15} + obj_15 = new Nothing() + obj_15 + private fun normalize_Empty_sp_0() = Empty + private fun startsWith_Empty_sp_0(c) = false + class Exact(val ch) extends RegExp() with + () + fun canBeEmpty() = false + fun derive(c) = + let {scrut2} + scrut2 = startsWith(c) + if scrut2 is + true then new StagedRegExp.Empty() + else new StagedRegExp.Nothing() + fun eq(other) = + let {ch__, arg_Exact_0_} + if other is + Exact then + arg_Exact_0_ = other.ch + ch__ = arg_Exact_0_ + ==(ch, ch__) + else false + fun normalize() = Exact + fun startsWith(c) = ==(ch, c) + private fun canBeEmpty_Exact_sp_0() = false + private fun canBeEmpty_Exact_sp_1() = false + private fun derive_Exact_sp_0(c) = + let {scrut2} + scrut2 = startsWith(c) + if scrut2 is + true then new StagedRegExp.Empty() + else new StagedRegExp.Nothing() + private fun derive_Exact_sp_1(c) = + let {scrut2} + scrut2 = startsWith(c) + if scrut2 is + true then new StagedRegExp.Empty() + else new StagedRegExp.Nothing() + private fun normalize_Exact_sp_0() = Exact + private fun normalize_Exact_sp_1() = Exact + private fun normalize_Exact_sp_2() = Exact + private fun normalize_Exact_sp_3() = Exact + private fun normalize_Exact_sp_4() = Exact + private fun normalize_Exact_sp_5() = Exact + private fun normalize_Exact_sp_6() = Exact + private fun normalize_Exact_sp_7() = Exact + private fun startsWith_Exact_sp_0(c) = ==("2", c) + private fun startsWith_Exact_sp_1(c) = ==("1", c) + class Any() extends RegExp() with + () + fun canBeEmpty() = false + fun derive(c) = + let {obj_2} + obj_2 = new Empty() + obj_2 + fun eq(other) = + if other is + Any then true + else false + fun normalize() = Any + fun startsWith(c) = true + class Not(val chars) extends RegExp() with + () + fun canBeEmpty() = false + fun derive(c) = + let {scrut3} + scrut3 = startsWith(c) + if scrut3 is + true then new StagedRegExp.Empty() + else new StagedRegExp.Nothing() + fun eq(other) = + let {chars__, arg_Not_0_} + if other is + Not then + arg_Not_0_ = other.chars + chars__ = arg_Not_0_ + StagedRegExp.arrEq(chars, chars__) + else false + fun normalize() = Not + fun startsWith(c) = + let {tmp4} + tmp4 = StagedRegExp.has(chars, c) + not tmp4 + private fun normalize_Not_sp_0() = Not + private fun normalize_Not_sp_1() = Not + class Union(val p1, val p2) extends RegExp() with + () + fun canBeEmpty() = + let {tmp8} + tmp8 = p1.canBeEmpty() + if tmp8 is + false then p2.canBeEmpty() + else true + fun derive(c) = + let {tmp5, tmp6, tmp7} + tmp5 = p1.derive(c) + tmp6 = p2.derive(c) + tmp7 = new StagedRegExp.Union.class(tmp5, tmp6) + tmp7.normalize_Union_sp_0() + fun eq(other) = + let {n, tmp21, tmp22, tmp23} + n = other.normalize() + if n is + Union then + tmp21 = normalize() + tmp22 = tmp21.flat() + tmp23 = n.flat_Union_sp_0() + StagedRegExp.setEq(tmp22, tmp23) + else false + fun flat() = + let {p1__, scrut4, p2__, scrut5, tmp9, tmp10} + scrut4 = p1 + if scrut4 is + Union then + tmp9 = p1.flat() + else + tmp9 = [p1] + p1__ = tmp9 + scrut5 = p2 + if scrut5 is + Union then + tmp10 = p2.flat() + else + tmp10 = [p2] + p2__ = tmp10 + StagedRegExp.concat(p1__, p2__) + fun iter(st, arr, i, s) = + let {scrut6, tmp11, tmp12, tmp13, tmp14} + tmp11 = s - i + scrut6 = ==(tmp11, s) + if scrut6 is + true then st + else + tmp12 = s - i + tmp13 = st.add(arr.(tmp12)) + tmp14 = i - 1 + iter(tmp13, arr, tmp14, s) + fun normalize() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize() + p2__1 = p2.normalize() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = StagedRegExp.len(s2.arr) + tmp20 = StagedRegExp.len(s2.arr) + StagedRegExp.mkUnion(s2.arr, tmp19, tmp20) + fun startsWith(c) = + let {tmp24} + tmp24 = p1.startsWith(c) + if tmp24 is + false then p2.startsWith(c) + else true + private fun canBeEmpty_Union_sp_0() = false + private fun canBeEmpty_Union_sp_1() = false + private fun canBeEmpty_Union_sp_2() = true + private fun canBeEmpty_Union_sp_3() = true + private fun derive_Union_sp_0(c) = + let {tmp5, tmp6, tmp7} + tmp5 = p1.derive_Concat_sp_16(c) + tmp6 = p2.derive_Union_sp_1(c) + tmp7 = new StagedRegExp.Union.class(tmp5, tmp6) + tmp7.normalize_Union_sp_15() + private fun derive_Union_sp_1(c) = + let {tmp5, tmp6, tmp7} + tmp5 = p1.derive_Concat_sp_17(c) + tmp6 = p2.derive_Concat_sp_18(c) + tmp7 = new StagedRegExp.Union.class(tmp5, tmp6) + tmp7.normalize_Union_sp_15() + private fun derive_Union_sp_2(c) = + let {tmp5, tmp6, tmp7} + tmp5 = p1.derive_Exact_sp_1(c) + tmp6 = p2.derive_Empty_sp_0(c) + tmp7 = new StagedRegExp.Union.class(tmp5, tmp6) + tmp7.normalize_Union_sp_11() + private fun derive_Union_sp_3(c) = + let {tmp5, tmp6, tmp7} + tmp5 = p1.derive_In_sp_2(c) + tmp6 = p2.derive_Empty_sp_0(c) + tmp7 = new StagedRegExp.Union.class(tmp5, tmp6) + tmp7.normalize_Union_sp_11() + private fun flat_Union_sp_0() = + let {p1__, scrut4, p2__, scrut5, tmp9, tmp10} + scrut4 = p1 + if scrut4 is + Union then + tmp9 = p1.flat() + else + tmp9 = [p1] + p1__ = tmp9 + scrut5 = p2 + if scrut5 is + Union then + tmp10 = p2.flat() + else + tmp10 = [p2] + p2__ = tmp10 + StagedRegExp.concat(p1__, p2__) + private fun normalize_Union_sp_0() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize() + p2__1 = p2.normalize() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_1() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_0() + p2__1 = p2.normalize() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_10() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_26() + p2__1 = p2.normalize() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_11() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + if p1 is + Empty then + p1__1 = p1.normalize_Empty_sp_0() + Nothing then + p1__1 = p1.normalize_Nothing_sp_0() + p2__1 = p2.normalize_Nothing_sp_0() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_12() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_33() + if p2 is + Empty then + p2__1 = p2.normalize_Empty_sp_0() + Nothing then + p2__1 = p2.normalize_Nothing_sp_0() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_13() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_34() + p2__1 = p2.normalize() + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_14() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_In_sp_5() + p2__1 = p2.normalize_Empty_sp_0() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_15() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize() + p2__1 = p2.normalize() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_16() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_40() + p2__1 = p2.normalize_Union_sp_17() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = len_StagedRegExp_sp_0(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_17() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_41() + p2__1 = p2.normalize_Concat_sp_42() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = len_StagedRegExp_sp_0(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_18() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Exact_sp_7() + p2__1 = p2.normalize_Empty_sp_0() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_2() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_1() + if p2 is + Star then + p2__1 = p2.normalize_Star_sp_0() + Nothing then + p2__1 = p2.normalize_Nothing_sp_0() + Concat then + p2__1 = p2.normalize_Concat_sp_1() + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_3() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_8() + p2__1 = p2.normalize() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_4() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_9() + p2__1 = p2.normalize() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_5() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_10() + p2__1 = p2.normalize() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_6() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_12() + p2__1 = p2.normalize() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_7() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_23() + p2__1 = p2.normalize_Empty_sp_0() + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_8() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_24() + p2__1 = p2.normalize() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun normalize_Union_sp_9() = + let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + p1__1 = p1.normalize_Concat_sp_25() + p2__1 = p2.normalize() + if p1__1 is + Union then + tmp15 = p1__1.flat_Union_sp_0() + else + tmp15 = [p1__1] + arr11 = tmp15 + if p2__1 is + Union then + tmp16 = p2__1.flat_Union_sp_0() + else + tmp16 = [p2__1] + arr2 = tmp16 + tmp17 = new StagedRegExp.DedupSet(arr11) + tmp18 = StagedRegExp.len(arr2) + s2 = iter(tmp17, arr2, 0, tmp18) + tmp19 = len_StagedRegExp_sp_0(s2.arr) + tmp20 = len_StagedRegExp_sp_0(s2.arr) + mkUnion_StagedRegExp_sp_0(s2.arr, tmp19, tmp20) + private fun startsWith_Union_sp_0(c) = + let {tmp24} + tmp24 = p1.startsWith_Concat_sp_16(c) + if tmp24 is + false then p2.startsWith_Union_sp_1(c) + else true + private fun startsWith_Union_sp_1(c) = + let {tmp24} + tmp24 = p1.startsWith_Concat_sp_17(c) + if tmp24 is + false then p2.startsWith_Concat_sp_18(c) + else true + private fun startsWith_Union_sp_2(c) = + let {tmp24} + tmp24 = p1.startsWith_Exact_sp_1(c) + if tmp24 is + false then p2.startsWith_Empty_sp_0(c) + else true + private fun startsWith_Union_sp_3(c) = + let {tmp24} + tmp24 = p1.startsWith_In_sp_2(c) + if tmp24 is + false then p2.startsWith_Empty_sp_0(c) + else true + class In(val chars) extends RegExp() with + () + fun canBeEmpty() = false + fun derive(c) = + let {scrut7} + scrut7 = startsWith(c) + if scrut7 is + true then new StagedRegExp.Empty() + else new StagedRegExp.Nothing() + fun eq(other) = + let {chars__1, arg_In_0_} + if other is + In then + arg_In_0_ = other.chars + chars__1 = arg_In_0_ + StagedRegExp.arrEq(chars, chars__1) + else false + fun normalize() = In + fun startsWith(c) = StagedRegExp.has(chars, c) + private fun canBeEmpty_In_sp_0() = false + private fun canBeEmpty_In_sp_1() = false + private fun canBeEmpty_In_sp_2() = false + private fun derive_In_sp_0(c) = + let {scrut7} + scrut7 = startsWith(c) + if scrut7 is + true then new StagedRegExp.Empty() + else new StagedRegExp.Nothing() + private fun derive_In_sp_1(c) = + let {scrut7} + scrut7 = startsWith(c) + if scrut7 is + true then new StagedRegExp.Empty() + else new StagedRegExp.Nothing() + private fun derive_In_sp_2(c) = + let {scrut7} + scrut7 = startsWith(c) + if scrut7 is + true then new StagedRegExp.Empty() + else new StagedRegExp.Nothing() + private fun normalize_In_sp_0() = In + private fun normalize_In_sp_1() = In + private fun normalize_In_sp_2() = In + private fun normalize_In_sp_3() = In + private fun normalize_In_sp_4() = In + private fun normalize_In_sp_5() = In + private fun startsWith_In_sp_0(c) = has_StagedRegExp_sp_0(chars, c) + private fun startsWith_In_sp_1(c) = has_StagedRegExp_sp_1(chars, c) + private fun startsWith_In_sp_2(c) = has_StagedRegExp_sp_2(chars, c) + class Concat(val p1, val p2) extends RegExp() with + () + fun canBeEmpty() = + let {scrut9, scrut10} + scrut9 = p1.canBeEmpty() + if scrut9 is + true then + scrut10 = p2.canBeEmpty() + if scrut10 is + true then true + else false + else false + fun derive(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive(c) + scrut8 = p1.canBeEmpty() + if scrut8 is + true then + tmp25 = new StagedRegExp.Concat.class(p1__2, p2) + tmp26 = p2.derive(c) + tmp27 = new StagedRegExp.Union(tmp25, tmp26) + tmp27.normalize_Union_sp_1() + else + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_0() + fun eq(other) = + let {p2__2, p1__4, scrut11, scrut12, arg_Concat_0_, arg_Concat_1_} + if other is + Concat then + arg_Concat_0_ = other.p1 + arg_Concat_1_ = other.p2 + p2__2 = arg_Concat_1_ + p1__4 = arg_Concat_0_ + scrut11 = p1.eq(p1__4) + if scrut11 is + true then + scrut12 = p2.eq(p2__2) + if scrut12 is + true then true + else false + else false + else false + fun normalize() = + let {p1__3, tmp29} + p1__3 = p1.normalize() + if p1__3 is + Empty then p2.normalize() + Nothing then p1__3 + else + tmp29 = p2.normalize() + new StagedRegExp.Concat.class(p1__3, tmp29) + fun startsWith(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty() + if scrut13 is + true then + scrut14 = p2.startsWith(c) + if scrut14 is + true then true + else false + else false + else true + private fun canBeEmpty_Concat_sp_0() = false + private fun canBeEmpty_Concat_sp_1() = false + private fun canBeEmpty_Concat_sp_10() = + let {scrut9, scrut10} + scrut9 = p1.canBeEmpty_Concat_sp_11() + if scrut9 is + true then + scrut10 = p2.canBeEmpty() + if scrut10 is + true then true + else false + else false + private fun canBeEmpty_Concat_sp_11() = + let {scrut9, scrut10} + if p1 is + Star then + scrut9 = p1.canBeEmpty_Star_sp_0() + Concat then + scrut9 = p1.canBeEmpty_Concat_sp_3() + if scrut9 is + true then + if p2 is + Star then + scrut10 = p2.canBeEmpty_Star_sp_0() + Nothing then + scrut10 = p2.canBeEmpty_Nothing_sp_0() + Concat then + scrut10 = p2.canBeEmpty_Concat_sp_3() + if scrut10 is + true then true + else false + else false + private fun canBeEmpty_Concat_sp_12() = + let {scrut9, scrut10} + scrut9 = p1.canBeEmpty() + if scrut9 is + true then + if p2 is + Nothing then + scrut10 = p2.canBeEmpty_Nothing_sp_0() + Concat then + scrut10 = p2.canBeEmpty_Concat_sp_10() + if scrut10 is + true then true + else false + else false + private fun canBeEmpty_Concat_sp_13() = false + private fun canBeEmpty_Concat_sp_14() = false + private fun canBeEmpty_Concat_sp_15() = false + private fun canBeEmpty_Concat_sp_16() = false + private fun canBeEmpty_Concat_sp_17() = false + private fun canBeEmpty_Concat_sp_18() = false + private fun canBeEmpty_Concat_sp_19() = false + private fun canBeEmpty_Concat_sp_2() = + let {scrut9, scrut10} + if p1 is + Star then + scrut9 = p1.canBeEmpty_Star_sp_0() + Concat then + scrut9 = p1.canBeEmpty_Concat_sp_3() + if scrut9 is + true then + if p2 is + Star then + scrut10 = p2.canBeEmpty_Star_sp_0() + Nothing then + scrut10 = p2.canBeEmpty_Nothing_sp_0() + Concat then + scrut10 = p2.canBeEmpty_Concat_sp_3() + Concat then + scrut10 = p2.canBeEmpty_Concat_sp_4() + if scrut10 is + true then true + else false + else false + private fun canBeEmpty_Concat_sp_20() = + let {scrut9, scrut10} + scrut9 = p1.canBeEmpty() + if scrut9 is + true then + scrut10 = p2.canBeEmpty() + if scrut10 is + true then true + else false + else false + private fun canBeEmpty_Concat_sp_3() = + let {scrut9, scrut10} + scrut9 = p1.canBeEmpty() + if scrut9 is + true then + scrut10 = p2.canBeEmpty_Star_sp_0() + true + else false + private fun canBeEmpty_Concat_sp_4() = + let {scrut9, scrut10} + scrut9 = p1.canBeEmpty() + if scrut9 is + true then + if p2 is + Star then + scrut10 = p2.canBeEmpty_Star_sp_0() + Nothing then + scrut10 = p2.canBeEmpty_Nothing_sp_0() + Concat then + scrut10 = p2.canBeEmpty_Concat_sp_3() + if scrut10 is + true then true + else false + else false + private fun canBeEmpty_Concat_sp_5() = + let {scrut9, scrut10} + scrut9 = p1.canBeEmpty() + if scrut9 is + true then + if p2 is + Nothing then + scrut10 = p2.canBeEmpty_Nothing_sp_0() + Concat then + scrut10 = p2.canBeEmpty_Concat_sp_2() + if scrut10 is + true then true + else false + else false + private fun canBeEmpty_Concat_sp_6() = + let {scrut9, scrut10} + scrut9 = p1.canBeEmpty() + if scrut9 is + true then + if p2 is + Nothing then + scrut10 = p2.canBeEmpty_Nothing_sp_0() + Concat then + scrut10 = p2.canBeEmpty_Concat_sp_2() + Concat then + scrut10 = p2.canBeEmpty_Concat_sp_5() + if scrut10 is + true then true + else false + else false + private fun canBeEmpty_Concat_sp_7() = false + private fun canBeEmpty_Concat_sp_8() = false + private fun canBeEmpty_Concat_sp_9() = false + private fun derive_Concat_sp_0(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive_Concat_sp_1(c) + scrut8 = p1.canBeEmpty_Concat_sp_1() + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_3() + private fun derive_Concat_sp_1(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive_In_sp_0(c) + scrut8 = p1.canBeEmpty_In_sp_0() + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_2() + private fun derive_Concat_sp_10(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive_Concat_sp_11(c) + scrut8 = p1.canBeEmpty_Concat_sp_11() + if scrut8 is + true then + tmp25 = new StagedRegExp.Concat.class(p1__2, p2) + tmp26 = p2.derive(c) + tmp27 = new StagedRegExp.Union(tmp25, tmp26) + tmp27.normalize_Union_sp_9() + else + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_25() + private fun derive_Concat_sp_11(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + if p1 is + Star then + p1__2 = p1.derive_Star_sp_0(c) + Concat then + p1__2 = p1.derive_Concat_sp_3(c) + if p1 is + Star then + scrut8 = p1.canBeEmpty_Star_sp_0() + Concat then + scrut8 = p1.canBeEmpty_Concat_sp_3() + if scrut8 is + true then + tmp25 = new StagedRegExp.Concat.class(p1__2, p2) + if p2 is + Star then + tmp26 = p2.derive_Star_sp_0(c) + Nothing then + tmp26 = p2.derive_Nothing_sp_0(c) + Concat then + tmp26 = p2.derive_Concat_sp_3(c) + tmp27 = new StagedRegExp.Union(tmp25, tmp26) + tmp27.normalize_Union_sp_8() + else + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_24() + private fun derive_Concat_sp_12(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive(c) + scrut8 = p1.canBeEmpty() + if scrut8 is + true then + tmp25 = new StagedRegExp.Concat.class(p1__2, p2) + if p2 is + Nothing then + tmp26 = p2.derive_Nothing_sp_0(c) + Concat then + tmp26 = p2.derive_Concat_sp_10(c) + tmp27 = new StagedRegExp.Union(tmp25, tmp26) + tmp27.normalize_Union_sp_10() + else + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_26() + private fun derive_Concat_sp_13(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive_Concat_sp_14(c) + scrut8 = p1.canBeEmpty_Concat_sp_14() + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_43() + private fun derive_Concat_sp_14(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive_Concat_sp_15(c) + scrut8 = p1.canBeEmpty_Concat_sp_15() + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_37() + private fun derive_Concat_sp_15(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive_Union_sp_0(c) + scrut8 = p1.canBeEmpty_Union_sp_0() + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_36() + private fun derive_Concat_sp_16(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive_Exact_sp_0(c) + scrut8 = p1.canBeEmpty_Exact_sp_0() + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_29() + private fun derive_Concat_sp_17(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive_Exact_sp_0(c) + scrut8 = p1.canBeEmpty_Exact_sp_0() + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_31() + private fun derive_Concat_sp_18(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive_Union_sp_2(c) + scrut8 = p1.canBeEmpty_Union_sp_2() + tmp25 = new StagedRegExp.Concat.class(p1__2, p2) + tmp26 = p2.derive_Concat_sp_19(c) + tmp27 = new StagedRegExp.Union(tmp25, tmp26) + tmp27.normalize_Union_sp_13() + private fun derive_Concat_sp_19(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive_Union_sp_3(c) + scrut8 = p1.canBeEmpty_Union_sp_3() + tmp25 = new StagedRegExp.Concat.class(p1__2, p2) + tmp26 = p2.derive_In_sp_2(c) + tmp27 = new StagedRegExp.Union(tmp25, tmp26) + tmp27.normalize_Union_sp_12() + private fun derive_Concat_sp_2(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + if p1 is + Star then + p1__2 = p1.derive_Star_sp_0(c) + Concat then + p1__2 = p1.derive_Concat_sp_3(c) + if p1 is + Star then + scrut8 = p1.canBeEmpty_Star_sp_0() + Concat then + scrut8 = p1.canBeEmpty_Concat_sp_3() + if scrut8 is + true then + tmp25 = new StagedRegExp.Concat.class(p1__2, p2) + if p2 is + Star then + tmp26 = p2.derive_Star_sp_0(c) + Nothing then + tmp26 = p2.derive_Nothing_sp_0(c) + Concat then + tmp26 = p2.derive_Concat_sp_3(c) + Concat then + tmp26 = p2.derive_Concat_sp_4(c) + tmp27 = new StagedRegExp.Union(tmp25, tmp26) + tmp27.normalize_Union_sp_4() + else + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_9() + private fun derive_Concat_sp_20(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive(c) + scrut8 = p1.canBeEmpty() + if scrut8 is + true then + tmp25 = new StagedRegExp.Concat.class(p1__2, p2) + tmp26 = p2.derive(c) + tmp27 = new StagedRegExp.Union(tmp25, tmp26) + tmp27.normalize_Union_sp_9() + else + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_25() + private fun derive_Concat_sp_3(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive(c) + scrut8 = p1.canBeEmpty() + if scrut8 is + true then + tmp25 = new StagedRegExp.Concat.class(p1__2, p2) + tmp26 = p2.derive_Star_sp_0(c) + tmp27 = new StagedRegExp.Union(tmp25, tmp26) + tmp27.normalize_Union_sp_2() + else + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_1() + private fun derive_Concat_sp_4(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive(c) + scrut8 = p1.canBeEmpty() + if scrut8 is + true then + tmp25 = new StagedRegExp.Concat.class(p1__2, p2) + if p2 is + Star then + tmp26 = p2.derive_Star_sp_0(c) + Nothing then + tmp26 = p2.derive_Nothing_sp_0(c) + Concat then + tmp26 = p2.derive_Concat_sp_3(c) + tmp27 = new StagedRegExp.Union(tmp25, tmp26) + tmp27.normalize_Union_sp_3() + else + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_8() + private fun derive_Concat_sp_5(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive(c) + scrut8 = p1.canBeEmpty() + if scrut8 is + true then + tmp25 = new StagedRegExp.Concat.class(p1__2, p2) + if p2 is + Nothing then + tmp26 = p2.derive_Nothing_sp_0(c) + Concat then + tmp26 = p2.derive_Concat_sp_2(c) + tmp27 = new StagedRegExp.Union(tmp25, tmp26) + tmp27.normalize_Union_sp_5() + else + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_10() + private fun derive_Concat_sp_6(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive(c) + scrut8 = p1.canBeEmpty() + if scrut8 is + true then + tmp25 = new StagedRegExp.Concat.class(p1__2, p2) + if p2 is + Nothing then + tmp26 = p2.derive_Nothing_sp_0(c) + Concat then + tmp26 = p2.derive_Concat_sp_2(c) + Concat then + tmp26 = p2.derive_Concat_sp_5(c) + tmp27 = new StagedRegExp.Union(tmp25, tmp26) + tmp27.normalize_Union_sp_6() + else + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_12() + private fun derive_Concat_sp_7(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive_Concat_sp_8(c) + scrut8 = p1.canBeEmpty_Concat_sp_8() + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_17() + private fun derive_Concat_sp_8(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive_Concat_sp_9(c) + scrut8 = p1.canBeEmpty_Concat_sp_9() + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_14() + private fun derive_Concat_sp_9(c) = + let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + p1__2 = p1.derive_In_sp_1(c) + scrut8 = p1.canBeEmpty_In_sp_1() + tmp28 = new StagedRegExp.Concat.class(p1__2, p2) + tmp28.normalize_Concat_sp_13() + private fun normalize_Concat_sp_0() = + let {p1__3, tmp29} + p1__3 = p1.normalize() + if p1__3 is + Empty then p2.normalize() + Nothing then p1__3 + else + tmp29 = p2.normalize() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_1() = + let {p1__3, tmp29} + p1__3 = p1.normalize() + if p1__3 is + Empty then p2.normalize_Star_sp_0() + Nothing then p1__3 + else + tmp29 = p2.normalize_Star_sp_0() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_10() = + let {p1__3, tmp29} + p1__3 = p1.normalize() + if p1__3 is + Empty then + if p2 is + Nothing then p2.normalize_Nothing_sp_0() + Concat then p2.normalize_Concat_sp_11() + Nothing then p1__3 + else + if p2 is + Nothing then + tmp29 = p2.normalize_Nothing_sp_0() + Concat then + tmp29 = p2.normalize_Concat_sp_11() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_11() = + let {p1__3, tmp29} + if p1 is + Star then + p1__3 = p1.normalize_Star_sp_0() + Concat then + p1__3 = p1.normalize_Concat_sp_1() + if p1__3 is + Nothing then p1__3 + else + if p2 is + Star then + tmp29 = p2.normalize_Star_sp_0() + Nothing then + tmp29 = p2.normalize_Nothing_sp_0() + Concat then + tmp29 = p2.normalize_Concat_sp_1() + Concat then + tmp29 = p2.normalize_Concat_sp_8() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_12() = + let {p1__3, tmp29} + p1__3 = p1.normalize() + if p1__3 is + Empty then + if p2 is + Nothing then p2.normalize_Nothing_sp_0() + Concat then p2.normalize_Concat_sp_11() + Concat then p2.normalize_Concat_sp_10() + Nothing then p1__3 + else + if p2 is + Nothing then + tmp29 = p2.normalize_Nothing_sp_0() + Concat then + tmp29 = p2.normalize_Concat_sp_11() + Concat then + tmp29 = p2.normalize_Concat_sp_10() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_13() = + let {p1__3, tmp29} + if p1 is + Empty then + p1__3 = p1.normalize_Empty_sp_0() + Nothing then + p1__3 = p1.normalize_Nothing_sp_0() + if p1__3 is + Empty then p2.normalize_Star_sp_2() + Nothing then p1__3 + else + tmp29 = p2.normalize_Star_sp_2() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_14() = + let {p1__3, tmp29} + if p1 is + Star then + p1__3 = p1.normalize_Star_sp_0() + Nothing then + p1__3 = p1.normalize_Nothing_sp_0() + Concat then + p1__3 = p1.normalize_Concat_sp_1() + if p1__3 is + Empty then p2.normalize_Concat_sp_15() + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_15() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_15() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Exact_sp_2() + if p1__3 is + Empty then p2.normalize_Concat_sp_16() + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_16() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_16() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Exact_sp_3() + if p1__3 is + Empty then p2.normalize_Exact_sp_3() + Nothing then p1__3 + else + tmp29 = p2.normalize_Exact_sp_3() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_17() = + let {p1__3, tmp29} + p1__3 = p1.normalize() + if p1__3 is + Empty then p2.normalize_Concat_sp_18() + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_18() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_18() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Concat_sp_19() + if p1__3 is + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_22() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_19() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Concat_sp_20() + if p1__3 is + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_21() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_2() = + let {p1__3, tmp29} + if p1 is + Empty then + p1__3 = p1.normalize_Empty_sp_0() + Nothing then + p1__3 = p1.normalize_Nothing_sp_0() + if p1__3 is + Empty then p2.normalize_Star_sp_1() + Nothing then p1__3 + else + tmp29 = p2.normalize_Star_sp_1() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_20() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Not_sp_0() + if p1__3 is + Empty then p2.normalize_Star_sp_3() + Nothing then p1__3 + else + tmp29 = p2.normalize_Star_sp_3() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_21() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Not_sp_1() + if p1__3 is + Empty then p2.normalize_Star_sp_4() + Nothing then p1__3 + else + tmp29 = p2.normalize_Star_sp_4() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_22() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Union_sp_7() + private fun normalize_Concat_sp_23() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Exact_sp_4() + if p1__3 is + Empty then p2.normalize_Star_sp_5() + Nothing then p1__3 + else + tmp29 = p2.normalize_Star_sp_5() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_24() = + let {p1__3, tmp29} + if p1 is + Star then + p1__3 = p1.normalize_Star_sp_0() + Nothing then + p1__3 = p1.normalize_Nothing_sp_0() + Concat then + p1__3 = p1.normalize_Concat_sp_1() + if p1__3 is + Empty then + if p2 is + Star then p2.normalize_Star_sp_0() + Nothing then p2.normalize_Nothing_sp_0() + Concat then p2.normalize_Concat_sp_1() + Nothing then p1__3 + else + if p2 is + Star then + tmp29 = p2.normalize_Star_sp_0() + Nothing then + tmp29 = p2.normalize_Nothing_sp_0() + Concat then + tmp29 = p2.normalize_Concat_sp_1() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_25() = + let {p1__3, tmp29} + p1__3 = p1.normalize() + if p1__3 is + Empty then p2.normalize() + Nothing then p1__3 + else + tmp29 = p2.normalize() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_26() = + let {p1__3, tmp29} + p1__3 = p1.normalize() + if p1__3 is + Empty then + if p2 is + Nothing then p2.normalize_Nothing_sp_0() + Concat then p2.normalize_Concat_sp_27() + Nothing then p1__3 + else + if p2 is + Nothing then + tmp29 = p2.normalize_Nothing_sp_0() + Concat then + tmp29 = p2.normalize_Concat_sp_27() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_27() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Concat_sp_28() + if p1__3 is + Nothing then p1__3 + else + tmp29 = p2.normalize() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_28() = + let {p1__3, tmp29} + if p1 is + Star then + p1__3 = p1.normalize_Star_sp_0() + Concat then + p1__3 = p1.normalize_Concat_sp_1() + if p1__3 is + Nothing then p1__3 + else + if p2 is + Star then + tmp29 = p2.normalize_Star_sp_0() + Nothing then + tmp29 = p2.normalize_Nothing_sp_0() + Concat then + tmp29 = p2.normalize_Concat_sp_1() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_29() = + let {p1__3, tmp29} + if p1 is + Empty then + p1__3 = p1.normalize_Empty_sp_0() + Nothing then + p1__3 = p1.normalize_Nothing_sp_0() + if p1__3 is + Empty then p2.normalize_Concat_sp_30() + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_30() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_3() = + let {p1__3, tmp29} + if p1 is + Star then + p1__3 = p1.normalize_Star_sp_0() + Nothing then + p1__3 = p1.normalize_Nothing_sp_0() + Concat then + p1__3 = p1.normalize_Concat_sp_1() + if p1__3 is + Empty then p2.normalize_Concat_sp_4() + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_4() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_30() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Exact_sp_5() + if p1__3 is + Empty then p2.normalize_In_sp_3() + Nothing then p1__3 + else + tmp29 = p2.normalize_In_sp_3() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_31() = + let {p1__3, tmp29} + if p1 is + Empty then + p1__3 = p1.normalize_Empty_sp_0() + Nothing then + p1__3 = p1.normalize_Nothing_sp_0() + if p1__3 is + Empty then p2.normalize_Concat_sp_32() + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_32() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_32() = + let {p1__3, tmp29} + p1__3 = p1.normalize_In_sp_4() + if p1__3 is + Empty then p2.normalize_In_sp_5() + Nothing then p1__3 + else + tmp29 = p2.normalize_In_sp_5() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_33() = + let {p1__3, tmp29} + p1__3 = p1.normalize() + if p1__3 is + Empty then p2.normalize_In_sp_5() + Nothing then p1__3 + else + tmp29 = p2.normalize_In_sp_5() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_34() = + let {p1__3, tmp29} + p1__3 = p1.normalize() + if p1__3 is + Empty then p2.normalize_Concat_sp_35() + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_35() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_35() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Union_sp_14() + private fun normalize_Concat_sp_36() = + let {p1__3, tmp29} + p1__3 = p1.normalize() + if p1__3 is + Empty then p2.normalize_Exact_sp_1() + Nothing then p1__3 + else + tmp29 = p2.normalize_Exact_sp_1() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_37() = + let {p1__3, tmp29} + p1__3 = p1.normalize() + if p1__3 is + Empty then p2.normalize_Concat_sp_38() + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_38() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_38() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Concat_sp_39() + private fun normalize_Concat_sp_39() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Union_sp_16() + private fun normalize_Concat_sp_4() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Exact_sp_0() + if p1__3 is + Empty then p2.normalize_Concat_sp_5() + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_5() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_40() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Exact_sp_6() + if p1__3 is + Empty then p2.normalize_Concat_sp_30() + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_30() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_41() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Exact_sp_6() + if p1__3 is + Empty then p2.normalize_Concat_sp_32() + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_32() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_42() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Union_sp_18() + private fun normalize_Concat_sp_43() = + let {p1__3, tmp29} + if p1 is + Nothing then + p1__3 = p1.normalize_Nothing_sp_0() + Concat then + p1__3 = p1.normalize_Concat_sp_25() + if p1__3 is + Empty then p2.normalize_Union_sp_16() + Nothing then p1__3 + else + tmp29 = p2.normalize_Union_sp_16() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_5() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Concat_sp_6() + if p1__3 is + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_7() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_6() = + let {p1__3, tmp29} + p1__3 = p1.normalize_In_sp_0() + if p1__3 is + Empty then p2.normalize_Star_sp_1() + Nothing then p1__3 + else + tmp29 = p2.normalize_Star_sp_1() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_7() = + let {p1__3, tmp29} + p1__3 = p1.normalize_Exact_sp_1() + if p1__3 is + Empty then p2.normalize_Concat_sp_6() + Nothing then p1__3 + else + tmp29 = p2.normalize_Concat_sp_6() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_8() = + let {p1__3, tmp29} + p1__3 = p1.normalize() + if p1__3 is + Empty then + if p2 is + Star then p2.normalize_Star_sp_0() + Nothing then p2.normalize_Nothing_sp_0() + Concat then p2.normalize_Concat_sp_1() + Nothing then p1__3 + else + if p2 is + Star then + tmp29 = p2.normalize_Star_sp_0() + Nothing then + tmp29 = p2.normalize_Nothing_sp_0() + Concat then + tmp29 = p2.normalize_Concat_sp_1() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun normalize_Concat_sp_9() = + let {p1__3, tmp29} + if p1 is + Star then + p1__3 = p1.normalize_Star_sp_0() + Nothing then + p1__3 = p1.normalize_Nothing_sp_0() + Concat then + p1__3 = p1.normalize_Concat_sp_1() + if p1__3 is + Empty then + if p2 is + Star then p2.normalize_Star_sp_0() + Nothing then p2.normalize_Nothing_sp_0() + Concat then p2.normalize_Concat_sp_1() + Concat then p2.normalize_Concat_sp_8() + Nothing then p1__3 + else + if p2 is + Star then + tmp29 = p2.normalize_Star_sp_0() + Nothing then + tmp29 = p2.normalize_Nothing_sp_0() + Concat then + tmp29 = p2.normalize_Concat_sp_1() + Concat then + tmp29 = p2.normalize_Concat_sp_8() + new StagedRegExp.Concat.class(p1__3, tmp29) + private fun startsWith_Concat_sp_0(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith_Concat_sp_1(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty_Concat_sp_1() + false + else true + private fun startsWith_Concat_sp_1(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith_In_sp_0(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty_In_sp_0() + false + else true + private fun startsWith_Concat_sp_10(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith_Concat_sp_11(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty_Concat_sp_11() + if scrut13 is + true then + scrut14 = p2.startsWith(c) + if scrut14 is + true then true + else false + else false + else true + private fun startsWith_Concat_sp_11(c) = + let {scrut13, scrut14, tmp30} + if p1 is + Star then + tmp30 = p1.startsWith_Star_sp_0(c) + Concat then + tmp30 = p1.startsWith_Concat_sp_3(c) + if tmp30 is + false then + if p1 is + Star then + scrut13 = p1.canBeEmpty_Star_sp_0() + Concat then + scrut13 = p1.canBeEmpty_Concat_sp_3() + if scrut13 is + true then + if p2 is + Star then + scrut14 = p2.startsWith_Star_sp_0(c) + Nothing then + scrut14 = p2.startsWith_Nothing_sp_0(c) + Concat then + scrut14 = p2.startsWith_Concat_sp_3(c) + if scrut14 is + true then true + else false + else false + else true + private fun startsWith_Concat_sp_12(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty() + if scrut13 is + true then + if p2 is + Nothing then + scrut14 = p2.startsWith_Nothing_sp_0(c) + Concat then + scrut14 = p2.startsWith_Concat_sp_10(c) + if scrut14 is + true then true + else false + else false + else true + private fun startsWith_Concat_sp_13(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith_Concat_sp_14(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty_Concat_sp_14() + false + else true + private fun startsWith_Concat_sp_14(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith_Concat_sp_15(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty_Concat_sp_15() + false + else true + private fun startsWith_Concat_sp_15(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith_Union_sp_0(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty_Union_sp_0() + false + else true + private fun startsWith_Concat_sp_16(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith_Exact_sp_0(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty_Exact_sp_0() + false + else true + private fun startsWith_Concat_sp_17(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith_Exact_sp_0(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty_Exact_sp_0() + false + else true + private fun startsWith_Concat_sp_18(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith_Union_sp_2(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty_Union_sp_2() + scrut14 = p2.startsWith_Concat_sp_19(c) + if scrut14 is + true then true + else false + else true + private fun startsWith_Concat_sp_19(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith_Union_sp_3(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty_Union_sp_3() + scrut14 = p2.startsWith_In_sp_2(c) + if scrut14 is + true then true + else false + else true + private fun startsWith_Concat_sp_2(c) = + let {scrut13, scrut14, tmp30} + if p1 is + Star then + tmp30 = p1.startsWith_Star_sp_0(c) + Concat then + tmp30 = p1.startsWith_Concat_sp_3(c) + if tmp30 is + false then + if p1 is + Star then + scrut13 = p1.canBeEmpty_Star_sp_0() + Concat then + scrut13 = p1.canBeEmpty_Concat_sp_3() + if scrut13 is + true then + if p2 is + Star then + scrut14 = p2.startsWith_Star_sp_0(c) + Nothing then + scrut14 = p2.startsWith_Nothing_sp_0(c) + Concat then + scrut14 = p2.startsWith_Concat_sp_3(c) + Concat then + scrut14 = p2.startsWith_Concat_sp_4(c) + if scrut14 is + true then true + else false + else false + else true + private fun startsWith_Concat_sp_20(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty() + if scrut13 is + true then + scrut14 = p2.startsWith(c) + if scrut14 is + true then true + else false + else false + else true + private fun startsWith_Concat_sp_3(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty() + if scrut13 is + true then + scrut14 = p2.startsWith_Star_sp_0(c) + if scrut14 is + true then true + else false + else false + else true + private fun startsWith_Concat_sp_4(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty() + if scrut13 is + true then + if p2 is + Star then + scrut14 = p2.startsWith_Star_sp_0(c) + Nothing then + scrut14 = p2.startsWith_Nothing_sp_0(c) + Concat then + scrut14 = p2.startsWith_Concat_sp_3(c) + if scrut14 is + true then true + else false + else false + else true + private fun startsWith_Concat_sp_5(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty() + if scrut13 is + true then + if p2 is + Nothing then + scrut14 = p2.startsWith_Nothing_sp_0(c) + Concat then + scrut14 = p2.startsWith_Concat_sp_2(c) + if scrut14 is + true then true + else false + else false + else true + private fun startsWith_Concat_sp_6(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty() + if scrut13 is + true then + if p2 is + Nothing then + scrut14 = p2.startsWith_Nothing_sp_0(c) + Concat then + scrut14 = p2.startsWith_Concat_sp_2(c) + Concat then + scrut14 = p2.startsWith_Concat_sp_5(c) + if scrut14 is + true then true + else false + else false + else true + private fun startsWith_Concat_sp_7(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith_Concat_sp_8(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty_Concat_sp_8() + false + else true + private fun startsWith_Concat_sp_8(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith_Concat_sp_9(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty_Concat_sp_9() + false + else true + private fun startsWith_Concat_sp_9(c) = + let {scrut13, scrut14, tmp30} + tmp30 = p1.startsWith_In_sp_1(c) + if tmp30 is + false then + scrut13 = p1.canBeEmpty_In_sp_1() + false + else true + class Star(val p) extends RegExp() with + () + fun canBeEmpty() = true + fun derive(c) = + let {tmp31, tmp32, tmp33} + tmp31 = p.derive(c) + tmp32 = new StagedRegExp.Star.class(p) + tmp33 = new StagedRegExp.Concat(tmp31, tmp32) + tmp33.normalize_Concat_sp_1() + fun eq(other) = + let {p__, arg_Star_0_} + if other is + Star then + arg_Star_0_ = other.p + p__ = arg_Star_0_ + p.eq(p__) + else false + fun normalize() = + let {tmp34} + tmp34 = p.normalize() + new StagedRegExp.Star.class(tmp34) + fun startsWith(c) = p.startsWith(c) + private fun canBeEmpty_Star_sp_0() = true + private fun derive_Star_sp_0(c) = + let {tmp31, tmp32, tmp33} + tmp31 = p.derive(c) + tmp32 = new StagedRegExp.Star.class(p) + tmp33 = new StagedRegExp.Concat(tmp31, tmp32) + tmp33.normalize_Concat_sp_1() + private fun normalize_Star_sp_0() = + let {tmp34} + tmp34 = p.normalize() + new StagedRegExp.Star.class(tmp34) + private fun normalize_Star_sp_1() = + let {tmp34} + tmp34 = p.normalize_In_sp_0() + new StagedRegExp.Star.class(tmp34) + private fun normalize_Star_sp_2() = + let {tmp34} + tmp34 = p.normalize_In_sp_1() + new StagedRegExp.Star.class(tmp34) + private fun normalize_Star_sp_3() = + let {tmp34} + tmp34 = p.normalize_Not_sp_0() + new StagedRegExp.Star.class(tmp34) + private fun normalize_Star_sp_4() = + let {tmp34} + tmp34 = p.normalize_Not_sp_1() + new StagedRegExp.Star.class(tmp34) + private fun normalize_Star_sp_5() = + let {tmp34} + tmp34 = p.normalize_In_sp_2() + new StagedRegExp.Star.class(tmp34) + private fun startsWith_Star_sp_0(c) = p.startsWith(c) + fun arrEq(arr1, arr2) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".eq(arr1, arr2) + fun concat(lhs, rhs) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".concat(lhs, rhs) + fun digits() = + let {tmp46, tup_8} + tup_8 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + tmp46 = tup_8 + new In(tmp46) + fun has(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) + fun len(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) + fun match(p, s) = matchImpl_StagedRegExp_sp_0(p, s, "") + fun matchAll(p, s) = + let {tmp61} + tmp61 = [] + matchAllImpl_StagedRegExp_sp_0(p, s, tmp61) + fun matchAllEmail(s) = + let {p7, email, tmp62, tmp63, tmp64, tmp65, tmp66, tmp67, tmp68, tmp69, tmp70, tup_9, tup_10} + tup_9 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + tmp62 = tup_9 + tmp63 = ["-", "."] + tup_10 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] + tmp64 = tup_10 + tmp65 = new In(tmp64) + p7 = plus_StagedRegExp_sp_0(tmp65) + tmp66 = new Exact("@") + tmp67 = new Exact(".") + tmp68 = new Concat(tmp67, p7) + tmp69 = new Concat(p7, tmp68) + tmp70 = new Concat(tmp66, tmp69) + email = new Concat(p7, tmp70) + matchAll_StagedRegExp_sp_0(email, s) + fun matchAllIPv4(s) = + let {fo, fi, segment, ipv4, tmp97, tmp98, tmp99, tmp100, tmp101, tmp102, tmp103, tmp104, tmp105, tmp106, tmp107, tmp108, tmp109, tmp110, tmp111, tmp112, tmp113, tmp114, tmp115, tmp116, tmp117} + tmp97 = ["0", "1", "2", "3", "4"] + fo = new In(tmp97) + tmp98 = ["0", "1", "2", "3", "4", "5"] + fi = new In(tmp98) + tmp99 = new Exact("2") + tmp100 = new Exact("5") + tmp101 = new Concat(tmp100, fi) + tmp102 = new Concat(tmp99, tmp101) + tmp103 = new Exact("2") + tmp104 = digits() + tmp105 = new Concat(fo, tmp104) + tmp106 = new Concat(tmp103, tmp105) + tmp107 = new Exact("1") + tmp108 = question_StagedRegExp_sp_2(tmp107) + tmp109 = digits() + tmp110 = question_StagedRegExp_sp_3(tmp109) + tmp111 = digits() + tmp112 = new Concat(tmp110, tmp111) + tmp113 = new Concat(tmp108, tmp112) + tmp114 = new Union(tmp106, tmp113) + segment = new Union(tmp102, tmp114) + tmp115 = new Exact(".") + tmp116 = new Concat(segment, tmp115) + tmp117 = nTimes_StagedRegExp_sp_0(tmp116, 3) + ipv4 = new Concat(tmp117, segment) + matchAll_StagedRegExp_sp_2(ipv4, s) + fun matchAllImpl(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} + tmp54 = len(s) + scrut22 = ==(tmp54, 0) + if scrut22 is + true then res + else + scrut23 = match(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp55 = len(ss) + scrut24 = >(tmp55, 0) + if scrut24 is + true then + tmp56 = len(ss) + tmp57 = s.slice(tmp56) + tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl(p, tmp57, tmp58) + else + tmp59 = s.slice(1) + matchAllImpl(p, tmp59, res) + else + tmp60 = s.slice(1) + matchAllImpl(p, tmp60, res) + fun matchAllURI(s) = + let {n1, n2, n3, w, d, p8, head, body, params, uri, tmp71, tmp72, tmp73, tmp74, tmp75, tmp76, tmp77, tmp78, tmp79, tmp80, tmp81, tmp82, tmp83, tmp84, tmp85, tmp86, tmp87, tmp88, tmp89, tmp90, tmp91, tmp92, tmp93, tmp94, tmp95, tmp96, tup_11, tup_12, tup_13, tup_14} + tmp71 = ["/", "?", "#", " ", "\n", "\t", "\r"] + n1 = new Not(tmp71) + tmp72 = ["?", "#", " ", "\n", "\t", "\r"] + n2 = new Not(tmp72) + tmp73 = ["#", " ", "\n", "\t", "\r"] + n3 = new Not(tmp73) + w = words() + d = digits() + tup_11 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + tmp74 = tup_11 + tup_12 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + tmp75 = tup_12 + tmp76 = ["-", "_"] + tup_13 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] + tmp77 = tup_13 + tup_14 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] + p8 = tup_14 + tmp78 = plus_StagedRegExp_sp_1(w) + tmp79 = new Exact(":") + tmp80 = new Exact("/") + tmp81 = new Exact("/") + tmp82 = new Concat(tmp80, tmp81) + tmp83 = new Concat(tmp79, tmp82) + head = new Concat(tmp78, tmp83) + tmp84 = plus_StagedRegExp_sp_2(n1) + tmp85 = plus_StagedRegExp_sp_3(n2) + body = new Concat(tmp84, tmp85) + tmp86 = new Exact("?") + tmp87 = new In(p8) + tmp88 = new Star(tmp87) + tmp89 = new Concat(tmp86, tmp88) + tmp90 = question_StagedRegExp_sp_0(tmp89) + tmp91 = new Exact("#") + tmp92 = new In(p8) + tmp93 = new Star(tmp92) + tmp94 = new Concat(tmp91, tmp93) + tmp95 = question_StagedRegExp_sp_1(tmp94) + params = new Concat(tmp90, tmp95) + tmp96 = new Concat(body, params) + uri = new Concat(head, tmp96) + matchAll_StagedRegExp_sp_1(uri, s) + fun matchImpl(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} + tmp50 = len(s) + scrut18 = ==(tmp50, 0) + if scrut18 is + true then + scrut19 = p.canBeEmpty() + if scrut19 is + true then new Some(acc) + else new None() + else + if p is + Nothing then new None() + else + c18 = s.0 + scrut20 = p.startsWith(c18) + if scrut20 is + true then + tmp51 = p.derive(c18) + tmp52 = s.slice(1) + tmp53 = acc + c18 + matchImpl(tmp51, tmp52, tmp53) + else + scrut21 = p.canBeEmpty() + if scrut21 is + true then new Some(acc) + else new None() + fun mkUnion(arr, i, s) = + let {scrut15, scrut16, tmp38, tmp39, tmp40, tmp41, tmp42} + tmp38 = s - i + tmp39 = s - 1 + scrut15 = ==(tmp38, tmp39) + if scrut15 is + true then arr.(i) + else + scrut16 = arr.(i) + if scrut16 is + Nothing then + tmp40 = i - 1 + mkUnion(arr, tmp40, s) + else + tmp41 = i - 1 + tmp42 = mkUnion(arr, tmp41, s) + new Union(arr.(i), tmp42) + fun nTimes(r, i) = + let {scrut17, tmp47, tmp48} + scrut17 = ==(i, 1) + if scrut17 is + true then r + else + tmp47 = i - 1 + tmp48 = nTimes(r, tmp47) + new Concat(r, tmp48) + fun notDigit() = + let {tmp37, tup_5} + tup_5 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + tmp37 = tup_5 + new Not(tmp37) + fun notSpace() = + let {tmp36, tup_4} + tup_4 = [" ", "\n", "\t", "\r"] + tmp36 = tup_4 + new Not(tmp36) + fun notWord() = + let {tmp35, tup_3} + tup_3 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + tmp35 = tup_3 + new Not(tmp35) + fun plus(r) = + let {tmp49} + tmp49 = new Star(r) + new Concat(r, tmp49) + fun push(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(arr, ele) + fun question(r) = + let {tmp43} + tmp43 = new Empty() + new Union(r, tmp43) + fun setEq(s1, s2) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".setEq(s1, s2) + fun spaces() = + let {tmp45, tup_7} + tup_7 = [" ", "\n", "\t", "\r"] + tmp45 = tup_7 + new In(tmp45) + fun words() = + let {tmp44, tup_6} + tup_6 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + tmp44 = tup_6 + new In(tmp44) + private fun has_StagedRegExp_sp_0(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) + private fun has_StagedRegExp_sp_1(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) + private fun has_StagedRegExp_sp_2(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) + private fun len_StagedRegExp_sp_0(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) + private fun matchAllImpl_StagedRegExp_sp_0(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} + tmp54 = len(s) + scrut22 = ==(tmp54, 0) + if scrut22 is + true then res + else + scrut23 = match(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp55 = len(ss) + scrut24 = >(tmp55, 0) + if scrut24 is + true then + tmp56 = len(ss) + tmp57 = s.slice(tmp56) + tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl(p, tmp57, tmp58) + else + tmp59 = s.slice(1) + matchAllImpl_StagedRegExp_sp_0(p, tmp59, res) + else + tmp60 = s.slice(1) + matchAllImpl_StagedRegExp_sp_0(p, tmp60, res) + private fun matchAllImpl_StagedRegExp_sp_1(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} + tmp54 = len(s) + scrut22 = ==(tmp54, 0) + if scrut22 is + true then res + else + scrut23 = match_StagedRegExp_sp_0(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp55 = len(ss) + scrut24 = >(tmp55, 0) + if scrut24 is + true then + tmp56 = len(ss) + tmp57 = s.slice(tmp56) + tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_2(p, tmp57, tmp58) + else + tmp59 = s.slice(1) + matchAllImpl_StagedRegExp_sp_1(p, tmp59, res) + else + tmp60 = s.slice(1) + matchAllImpl_StagedRegExp_sp_1(p, tmp60, res) + private fun matchAllImpl_StagedRegExp_sp_2(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} + tmp54 = len(s) + scrut22 = ==(tmp54, 0) + if scrut22 is + true then res + else + scrut23 = match_StagedRegExp_sp_0(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp55 = len(ss) + scrut24 = >(tmp55, 0) + if scrut24 is + true then + tmp56 = len(ss) + tmp57 = s.slice(tmp56) + tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_2(p, tmp57, tmp58) + else + tmp59 = s.slice(1) + matchAllImpl_StagedRegExp_sp_2(p, tmp59, res) + else + tmp60 = s.slice(1) + matchAllImpl_StagedRegExp_sp_2(p, tmp60, res) + private fun matchAllImpl_StagedRegExp_sp_3(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} + tmp54 = len(s) + scrut22 = ==(tmp54, 0) + if scrut22 is + true then res + else + scrut23 = match_StagedRegExp_sp_1(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp55 = len(ss) + scrut24 = >(tmp55, 0) + if scrut24 is + true then + tmp56 = len(ss) + tmp57 = s.slice(tmp56) + tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_4(p, tmp57, tmp58) + else + tmp59 = s.slice(1) + matchAllImpl_StagedRegExp_sp_3(p, tmp59, res) + else + tmp60 = s.slice(1) + matchAllImpl_StagedRegExp_sp_3(p, tmp60, res) + private fun matchAllImpl_StagedRegExp_sp_4(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} + tmp54 = len(s) + scrut22 = ==(tmp54, 0) + if scrut22 is + true then res + else + scrut23 = match_StagedRegExp_sp_1(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp55 = len(ss) + scrut24 = >(tmp55, 0) + if scrut24 is + true then + tmp56 = len(ss) + tmp57 = s.slice(tmp56) + tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_4(p, tmp57, tmp58) + else + tmp59 = s.slice(1) + matchAllImpl_StagedRegExp_sp_4(p, tmp59, res) + else + tmp60 = s.slice(1) + matchAllImpl_StagedRegExp_sp_4(p, tmp60, res) + private fun matchAllImpl_StagedRegExp_sp_5(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} + tmp54 = len(s) + scrut22 = ==(tmp54, 0) + if scrut22 is + true then res + else + scrut23 = match_StagedRegExp_sp_2(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp55 = len(ss) + scrut24 = >(tmp55, 0) + if scrut24 is + true then + tmp56 = len(ss) + tmp57 = s.slice(tmp56) + tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_6(p, tmp57, tmp58) + else + tmp59 = s.slice(1) + matchAllImpl_StagedRegExp_sp_5(p, tmp59, res) + else + tmp60 = s.slice(1) + matchAllImpl_StagedRegExp_sp_5(p, tmp60, res) + private fun matchAllImpl_StagedRegExp_sp_6(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} + tmp54 = len(s) + scrut22 = ==(tmp54, 0) + if scrut22 is + true then res + else + scrut23 = match_StagedRegExp_sp_2(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp55 = len(ss) + scrut24 = >(tmp55, 0) + if scrut24 is + true then + tmp56 = len(ss) + tmp57 = s.slice(tmp56) + tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_6(p, tmp57, tmp58) + else + tmp59 = s.slice(1) + matchAllImpl_StagedRegExp_sp_6(p, tmp59, res) + else + tmp60 = s.slice(1) + matchAllImpl_StagedRegExp_sp_6(p, tmp60, res) + private fun matchAll_StagedRegExp_sp_0(p, s) = + let {tmp61} + tmp61 = [] + matchAllImpl_StagedRegExp_sp_1(p, s, tmp61) + private fun matchAll_StagedRegExp_sp_1(p, s) = + let {tmp61} + tmp61 = [] + matchAllImpl_StagedRegExp_sp_3(p, s, tmp61) + private fun matchAll_StagedRegExp_sp_2(p, s) = + let {tmp61} + tmp61 = [] + matchAllImpl_StagedRegExp_sp_5(p, s, tmp61) + private fun matchImpl_StagedRegExp_sp_0(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} + tmp50 = len(s) + scrut18 = ==(tmp50, 0) + if scrut18 is + true then + scrut19 = p.canBeEmpty() + if scrut19 is + true then new Some(acc) + else new None() + else + if p is + Nothing then new None() + else + c18 = s.0 + scrut20 = p.startsWith(c18) + if scrut20 is + true then + tmp51 = p.derive(c18) + tmp52 = s.slice(1) + tmp53 = "" + c18 + matchImpl(tmp51, tmp52, tmp53) + else + scrut21 = p.canBeEmpty() + if scrut21 is + true then new Some(acc) + else new None() + private fun matchImpl_StagedRegExp_sp_1(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} + tmp50 = len(s) + scrut18 = ==(tmp50, 0) + if scrut18 is + true then + scrut19 = p.canBeEmpty_Concat_sp_0() + new None() + else + c18 = s.0 + scrut20 = p.startsWith_Concat_sp_0(c18) + if scrut20 is + true then + tmp51 = p.derive_Concat_sp_0(c18) + tmp52 = s.slice(1) + tmp53 = "" + c18 + matchImpl_StagedRegExp_sp_2(tmp51, tmp52, tmp53) + else + scrut21 = p.canBeEmpty_Concat_sp_0() + new None() + private fun matchImpl_StagedRegExp_sp_2(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} + tmp50 = len(s) + scrut18 = ==(tmp50, 0) + if scrut18 is + true then + if p is + Nothing then + scrut19 = p.canBeEmpty_Nothing_sp_0() + Concat then + scrut19 = p.canBeEmpty_Concat_sp_2() + Concat then + scrut19 = p.canBeEmpty_Concat_sp_5() + Concat then + scrut19 = p.canBeEmpty_Concat_sp_6() + if scrut19 is + true then new Some(acc) + else new None() + else + if p is + Nothing then new None() + else + c18 = s.0 + if p is + Concat then + scrut20 = p.startsWith_Concat_sp_2(c18) + Concat then + scrut20 = p.startsWith_Concat_sp_5(c18) + Concat then + scrut20 = p.startsWith_Concat_sp_6(c18) + if scrut20 is + true then + if p is + Concat then + tmp51 = p.derive_Concat_sp_2(c18) + Concat then + tmp51 = p.derive_Concat_sp_5(c18) + Concat then + tmp51 = p.derive_Concat_sp_6(c18) + tmp52 = s.slice(1) + tmp53 = acc + c18 + matchImpl(tmp51, tmp52, tmp53) + else + if p is + Concat then + scrut21 = p.canBeEmpty_Concat_sp_2() + Concat then + scrut21 = p.canBeEmpty_Concat_sp_5() + Concat then + scrut21 = p.canBeEmpty_Concat_sp_6() + if scrut21 is + true then new Some(acc) + else new None() + private fun matchImpl_StagedRegExp_sp_3(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} + tmp50 = len(s) + scrut18 = ==(tmp50, 0) + if scrut18 is + true then + scrut19 = p.canBeEmpty_Concat_sp_7() + new None() + else + c18 = s.0 + scrut20 = p.startsWith_Concat_sp_7(c18) + if scrut20 is + true then + tmp51 = p.derive_Concat_sp_7(c18) + tmp52 = s.slice(1) + tmp53 = "" + c18 + matchImpl_StagedRegExp_sp_4(tmp51, tmp52, tmp53) + else + scrut21 = p.canBeEmpty_Concat_sp_7() + new None() + private fun matchImpl_StagedRegExp_sp_4(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} + tmp50 = len(s) + scrut18 = ==(tmp50, 0) + if scrut18 is + true then + if p is + Nothing then + scrut19 = p.canBeEmpty_Nothing_sp_0() + Concat then + scrut19 = p.canBeEmpty_Concat_sp_10() + Concat then + scrut19 = p.canBeEmpty_Concat_sp_12() + if scrut19 is + true then new Some(acc) + else new None() + else + if p is + Nothing then new None() + else + c18 = s.0 + if p is + Concat then + scrut20 = p.startsWith_Concat_sp_10(c18) + Concat then + scrut20 = p.startsWith_Concat_sp_12(c18) + if scrut20 is + true then + if p is + Concat then + tmp51 = p.derive_Concat_sp_10(c18) + Concat then + tmp51 = p.derive_Concat_sp_12(c18) + tmp52 = s.slice(1) + tmp53 = acc + c18 + matchImpl(tmp51, tmp52, tmp53) + else + if p is + Concat then + scrut21 = p.canBeEmpty_Concat_sp_10() + Concat then + scrut21 = p.canBeEmpty_Concat_sp_12() + if scrut21 is + true then new Some(acc) + else new None() + private fun matchImpl_StagedRegExp_sp_5(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} + tmp50 = len(s) + scrut18 = ==(tmp50, 0) + if scrut18 is + true then + scrut19 = p.canBeEmpty_Concat_sp_13() + new None() + else + c18 = s.0 + scrut20 = p.startsWith_Concat_sp_13(c18) + if scrut20 is + true then + tmp51 = p.derive_Concat_sp_13(c18) + tmp52 = s.slice(1) + tmp53 = "" + c18 + matchImpl_StagedRegExp_sp_6(tmp51, tmp52, tmp53) + else + scrut21 = p.canBeEmpty_Concat_sp_13() + new None() + private fun matchImpl_StagedRegExp_sp_6(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} + tmp50 = len(s) + scrut18 = ==(tmp50, 0) + if scrut18 is + true then + if p is + Nothing then + scrut19 = p.canBeEmpty_Nothing_sp_0() + Concat then + scrut19 = p.canBeEmpty_Concat_sp_20() + if scrut19 is + true then new Some(acc) + else new None() + else + if p is + Nothing then new None() + else + c18 = s.0 + scrut20 = p.startsWith_Concat_sp_20(c18) + if scrut20 is + true then + tmp51 = p.derive_Concat_sp_20(c18) + tmp52 = s.slice(1) + tmp53 = acc + c18 + matchImpl(tmp51, tmp52, tmp53) + else + scrut21 = p.canBeEmpty_Concat_sp_20() + if scrut21 is + true then new Some(acc) + else new None() + private fun match_StagedRegExp_sp_0(p, s) = matchImpl_StagedRegExp_sp_1(p, s, "") + private fun match_StagedRegExp_sp_1(p, s) = matchImpl_StagedRegExp_sp_3(p, s, "") + private fun match_StagedRegExp_sp_2(p, s) = matchImpl_StagedRegExp_sp_5(p, s, "") + private fun mkUnion_StagedRegExp_sp_0(arr, i, s) = + let {scrut15, scrut16, tmp38, tmp39, tmp40, tmp41, tmp42} + tmp38 = s - i + tmp39 = s - 1 + scrut15 = ==(tmp38, tmp39) + if scrut15 is + true then arr.(i) + else + scrut16 = arr.(i) + private fun nTimes_StagedRegExp_sp_0(r, i) = + let {scrut17, tmp47, tmp48} + scrut17 = false + tmp47 = 2 + tmp48 = nTimes_StagedRegExp_sp_1(r, tmp47) + new Concat(r, tmp48) + private fun nTimes_StagedRegExp_sp_1(r, i) = + let {scrut17, tmp47, tmp48} + scrut17 = false + tmp47 = 1 + tmp48 = nTimes_StagedRegExp_sp_2(r, tmp47) + new Concat(r, tmp48) + private fun nTimes_StagedRegExp_sp_2(r, i) = + let {scrut17, tmp47, tmp48} + scrut17 = true + r + private fun plus_StagedRegExp_sp_0(r) = + let {tmp49} + tmp49 = new Star(r) + new Concat(r, tmp49) + private fun plus_StagedRegExp_sp_1(r) = + let {tmp49} + tmp49 = new Star(r) + new Concat(r, tmp49) + private fun plus_StagedRegExp_sp_2(r) = + let {tmp49} + tmp49 = new Star(r) + new Concat(r, tmp49) + private fun plus_StagedRegExp_sp_3(r) = + let {tmp49} + tmp49 = new Star(r) + new Concat(r, tmp49) + private fun question_StagedRegExp_sp_0(r) = + let {tmp43} + tmp43 = new Empty() + new Union(r, tmp43) + private fun question_StagedRegExp_sp_1(r) = + let {tmp43} + tmp43 = new Empty() + new Union(r, tmp43) + private fun question_StagedRegExp_sp_2(r) = + let {tmp43} + tmp43 = new Empty() + new Union(r, tmp43) + private fun question_StagedRegExp_sp_3(r) = + let {tmp43} + tmp43 = new Empty() + new Union(r, tmp43) \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls b/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls index 48a6ceecec..edf7328700 100644 --- a/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls +++ b/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls @@ -6,509 +6,125 @@ import "../../mlscript-compile/staging/StagedRegExp.mls" StagedRegExp."generate"("../StagedRegExp.mls", "./hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] RangeError: Maximum call stack size exceeded -//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:582:56) -//│ at SpecializeHelpers.prop (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2731:30) -//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:1046:46) -//│ at SpecializeHelpers.prop (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2731:30) -//│ at SpecializeHelpers.specialize (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:3044:35) -//│ at mkUnion_gen (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mjs:10964:30) -//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:736:49) -//│ at SpecializeHelpers.sor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2507:30) -//│ at SpecializeHelpers.sorInstantiate_sorCall_sor_prop_specializeCtor (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:917:58) -//│ at SpecializeHelpers.prop (file:///home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mjs:2731:30) import "../../mlscript-compile/staging/out/StagedRegExp.mls" -//│ FAILURE: Unexpected exception -//│ /!!!\ Uncaught error: java.nio.file.NoSuchFileException: /home/neilkleistgao/mlscript/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls -//│ at: java.base/sun.nio.fs.UnixException.translateToIOException(UnixException.java:92) -//│ at: java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:106) -//│ at: java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:111) -//│ at: java.base/sun.nio.fs.UnixFileAttributeViews$Basic.readAttributes(UnixFileAttributeViews.java:55) -//│ at: java.base/sun.nio.fs.UnixFileSystemProvider.readAttributes(UnixFileSystemProvider.java:171) -//│ at: java.base/sun.nio.fs.LinuxFileSystemProvider.readAttributes(LinuxFileSystemProvider.java:99) -//│ at: java.base/java.nio.file.Files.readAttributes(Files.java:1854) -//│ at: java.base/java.nio.file.Files.getLastModifiedTime(Files.java:2397) -//│ at: os.mtime$.apply(StatOps.scala:61) -//│ at: hkmc2.io.JavaFileSystem.getLastChangedTimestamp(PlatformFileSystem.scala:13) open StagedRegExp match(Exact("x"), "x") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL23:1:109 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ = Some("x") match(Exact("x"), "x") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL26:1:111 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ = Some("x") match(Exact("x"), "") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL29:1:111 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ = None match(Exact("x"), "xyz") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL32:1:111 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ = Some("x") match(Any(), "x") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL35:1:106 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ = Some("x") match(Any(), "") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL38:1:106 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ = None match(Any(), "xyz") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL41:1:107 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ = Some("x") match(Not(["x", "y", "z"]), "xyz") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL44:1:175 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ = None match(Not(["x", "y", "z"]), "w") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL47:1:177 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +//│ = Some("w") +:fixme this generation should be fixed in another branch match(Union(Union(Exact("x"), Exact("y")), Exact("z")), "z") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL50:1:368 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +//│ ═══[RUNTIME ERROR] TypeError: this.p1.normalize is not a function +:fixme this generation should be fixed in another branch match(Union(Union(Exact("x"), Exact("y")), Exact("z")), "y") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL53:1:368 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ ═══[RUNTIME ERROR] TypeError: this.p1.normalize is not a function match(Union(Union(Exact("x"), Exact("y")), Exact("z")), "w") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL56:1:368 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +//│ = None +:fixme this generation should be fixed in another branch match(question(Exact("x")), "x") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.question is not a function -//│ at REPL59:1:115 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ ═══[RUNTIME ERROR] TypeError: p.canBeEmpty is not a function match(question(Exact("x")), "y") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.question is not a function -//│ at REPL62:1:115 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ = Some("") +:fixme this generation should be fixed in another branch match(question(Exact("x")), "xx") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.question is not a function -//│ at REPL65:1:115 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +//│ ═══[RUNTIME ERROR] TypeError: p.startsWith is not a function +:fixme this generation should be fixed in another branch match(question(Any()), "y") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.question is not a function -//│ at REPL68:1:110 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +//│ ═══[RUNTIME ERROR] TypeError: p.canBeEmpty is not a function +:fixme this generation should be fixed in another branch match(Concat(Star(Exact("x")), Exact("y")), "x") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL71:1:302 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +//│ ═══[RUNTIME ERROR] TypeError: this.p1.normalize is not a function +:fixme this generation should be fixed in another branch match(Concat(Star(Exact("x")), Exact("y")), "y") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL74:1:302 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +//│ ═══[RUNTIME ERROR] TypeError: this.p1.normalize is not a function +:fixme this generation should be fixed in another branch match(Concat(Star(Exact("x")), Exact("y")), "xxxxxy") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL77:1:302 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +//│ ═══[RUNTIME ERROR] TypeError: this.p1.normalize is not a function +:fixme this generation should be fixed in another branch match(Concat(Star(Exact("x")), Exact("y")), "xyyyy") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.match is not a function -//│ at REPL80:1:302 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ ═══[RUNTIME ERROR] TypeError: this.p1.normalize is not a function match(plus(Exact("x")), "") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.plus is not a function -//│ at REPL83:1:115 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ = None +:fixme this generation should be fixed in another branch match(plus(Exact("x")), "x") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.plus is not a function -//│ at REPL86:1:115 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ ═══[RUNTIME ERROR] TypeError: this.p1.canBeEmpty is not a function match(plus(Exact("x")), "y") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.plus is not a function -//│ at REPL89:1:115 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +//│ = None +:fixme this generation should be fixed in another branch match(plus(Exact("x")), "xxx") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.plus is not a function -//│ at REPL92:1:115 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +//│ ═══[RUNTIME ERROR] TypeError: this.p1.startsWith is not a function +:fixme this generation should be fixed in another branch match(plus(Exact("x")), "xxxy") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.plus is not a function -//│ at REPL95:1:115 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +//│ ═══[RUNTIME ERROR] TypeError: this.p1.startsWith is not a function +:fixme this generation should be fixed in another branch // x{3}, equivalent to xxx match(nTimes(Exact("x"), 3), "xxx") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.nTimes is not a function -//│ at REPL98:1:115 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +//│ ═══[RUNTIME ERROR] TypeError: this.p1.startsWith is not a function +:fixme this generation should be fixed in another branch match(nTimes(Exact("x"), 3), "xxy") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.nTimes is not a function -//│ at REPL101:1:115 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +//│ ═══[RUNTIME ERROR] TypeError: this.p1.startsWith is not a function +:fixme this generation should be fixed in another branch match(nTimes(Exact("x"), 3), "xx") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.nTimes is not a function -//│ at REPL104:1:115 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ ═══[RUNTIME ERROR] TypeError: this.p1.startsWith is not a function :silent let p = Concat(In(["T", "t"]), Concat(Star(words()), notWord())) -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.words is not a function -//│ at REPL107:1:197 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) - +:fixme this generation should be fixed in another branch matchAll(p, "To be or not to be, that is the question.") -//│ FAILURE: Unexpected runtime error -//│ FAILURE LOCATION: mkQuery (JSBackendDiffMaker.scala:248) -//│ ═══[RUNTIME ERROR] TypeError: StagedRegExp.matchAll is not a function -//│ at REPL109:1:52 -//│ at ContextifyScript.runInThisContext (node:vm:137:12) -//│ at defaultEval (node:repl:610:24) -//│ at REPLEvalInContext (node:repl:693:9) -//│ at AsyncLocalStorage.run (node:internal/async_local_storage/async_context_frame:65:14) -//│ at REPLServer.REPLEval [as eval] (node:repl:692:19) -//│ at REPLServer.onLine (node:repl:830:12) -//│ at REPLServer.emit (node:events:509:20) -//│ at [_onLine] [as _onLine] (node:internal/readline/interface:465:12) -//│ at [_normalWrite] [as _normalWrite] (node:internal/readline/interface:647:22) +//│ ═══[RUNTIME ERROR] TypeError: this.p1.startsWith is not a function From 231f6b1288bcfda10791e4dabe5a1d803d742110 Mon Sep 17 00:00:00 2001 From: NeilKleistGao Date: Tue, 2 Jun 2026 15:20:19 +0800 Subject: [PATCH 6/9] Update CI stack size --- .github/workflows/nix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml index 355a94072e..cd979fdc77 100644 --- a/.github/workflows/nix.yml +++ b/.github/workflows/nix.yml @@ -20,7 +20,7 @@ jobs: - name: Run test id: run_test # Not running all tests because those outside of hkmc2 are obsolete (will be removed) - run: sbt -J-Xmx4096M -J-Xss8M hkmc2AllTests/test + run: sbt -J-Xmx4096M -J-Xss1G hkmc2AllTests/test # It's useful to see how the tests fail by seeing the diff through the next step continue-on-error: true - name: Check no changes From a74772bba6f92b0cad3a6b312284afe126a1bd8c Mon Sep 17 00:00:00 2001 From: NeilKleistGao Date: Tue, 2 Jun 2026 15:50:58 +0800 Subject: [PATCH 7/9] Minor fix --- .../mlscript-compile/staging/StagedRegExp.mls | 10 +- .../staging/out/StagedRegExp.mls | 2058 +++++++++-------- .../block-staging/StagedRegExpTest.mls | 30 +- 3 files changed, 1056 insertions(+), 1042 deletions(-) diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mls b/hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mls index a677539036..35d5169a52 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/StagedRegExp.mls @@ -38,7 +38,7 @@ staged module StagedRegExp with let s = len(arr) if s - i == s then new DedupSet(push(arr, e)) else - let e' = arr.(i) + let e' = arr.(s - i) if e.eq(e') then this else addImp(e, i - 1) fun add(e) = addImp(e, len(arr)) @@ -95,11 +95,11 @@ staged module StagedRegExp with fun notDigit() = new Not(CharSet.digit()) fun mkUnion(arr, i, s) = - if s - i == s - 1 then arr.(i) + if s - i == s - 1 then arr.(s - i) else - if arr.(i) is + if arr.(s - i) is Nothing() then mkUnion(arr, i - 1, s) - else new Union(arr.(i), mkUnion(arr, i - 1, s)) + else new Union(arr.(s - i), mkUnion(arr, i - 1, s)) staged class Union(val p1, val p2) extends RegExp with fun derive(c) = (new Union(p1.derive(c), p2.derive(c))).normalize() @@ -116,7 +116,7 @@ staged module StagedRegExp with let p2' = p2.normalize() let arr1 = if p1' is Union then p1'.flat() else [p1'] let arr2 = if p2' is Union then p2'.flat() else [p2'] - let s = iter(new DedupSet(arr1), arr2, 0, len(arr2)) + let s = iter(new DedupSet(arr1), arr2, len(arr2), len(arr2)) mkUnion(s.arr, len(s.arr), len(s.arr)) fun eq(other) = let n = other.normalize() diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls index 0a303a43b0..0da7df6fd8 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls @@ -6,11 +6,11 @@ module StagedRegExp with class DedupSet(val arr) with () fun add(e) = - let {tmp3} - tmp3 = len(arr) - addImp(e, tmp3) + let {tmp4} + tmp4 = len(arr) + addImp(e, tmp4) fun addImp(e, i) = - let {s, scrut, e__, scrut1, tmp, tmp1, tmp2} + let {s, scrut, e__, scrut1, tmp, tmp1, tmp2, tmp3} s = len(arr) tmp = s - i scrut = ==(tmp, s) @@ -19,13 +19,14 @@ module StagedRegExp with tmp1 = push(arr, e) new DedupSet.class(tmp1) else - e__ = arr.(i) + tmp2 = s - i + e__ = arr.(tmp2) scrut1 = e.eq(e__) if scrut1 is true then this else - tmp2 = i - 1 - addImp(e, tmp2) + tmp3 = i - 1 + addImp(e, tmp3) class RegExp() with () class Nothing() extends RegExp() with @@ -172,9 +173,9 @@ module StagedRegExp with else false fun normalize() = this fun startsWith(c) = - let {tmp4} - tmp4 = has(chars, c) - not tmp4 + let {tmp5} + tmp5 = has(chars, c) + not tmp5 private fun canBeEmpty_Not_sp_0() = false private fun derive_Not_sp_0(c) = let {scrut3} @@ -185,87 +186,88 @@ module StagedRegExp with private fun normalize_Not_sp_0() = this private fun normalize_Not_sp_1() = this private fun startsWith_Not_sp_0(c) = - let {tmp4} - tmp4 = has_StagedRegExp_sp_2(chars, c) - not tmp4 + let {tmp5} + tmp5 = has_StagedRegExp_sp_2(chars, c) + not tmp5 class Union(val p1, val p2) extends RegExp() with () fun canBeEmpty() = - let {tmp8} - tmp8 = p1.canBeEmpty() - if tmp8 is + let {tmp9} + tmp9 = p1.canBeEmpty() + if tmp9 is false then p2.canBeEmpty() else true fun derive(c) = - let {tmp5, tmp6, tmp7} - tmp5 = p1.derive(c) - tmp6 = p2.derive(c) - tmp7 = new Union.class(tmp5, tmp6) - tmp7.normalize_Union_sp_0() + let {tmp6, tmp7, tmp8} + tmp6 = p1.derive(c) + tmp7 = p2.derive(c) + tmp8 = new Union.class(tmp6, tmp7) + tmp8.normalize_Union_sp_0() fun eq(other) = - let {n, tmp21, tmp22, tmp23} + let {n, tmp23, tmp24, tmp25} n = other.normalize() if n is Union then - tmp21 = normalize() - tmp22 = tmp21.flat() - tmp23 = n.flat_Union_sp_0() - setEq(tmp22, tmp23) + tmp23 = normalize() + tmp24 = tmp23.flat() + tmp25 = n.flat_Union_sp_0() + setEq(tmp24, tmp25) else false fun flat() = - let {p1__, scrut4, p2__, scrut5, tmp9, tmp10} + let {p1__, scrut4, p2__, scrut5, tmp10, tmp11} scrut4 = p1 if scrut4 is Union then - tmp9 = p1.flat() + tmp10 = p1.flat() else - tmp9 = [p1] - p1__ = tmp9 + tmp10 = [p1] + p1__ = tmp10 scrut5 = p2 if scrut5 is Union then - tmp10 = p2.flat() + tmp11 = p2.flat() else - tmp10 = [p2] - p2__ = tmp10 + tmp11 = [p2] + p2__ = tmp11 concat(p1__, p2__) fun iter(st, arr, i, s) = - let {scrut6, tmp11, tmp12, tmp13, tmp14} - tmp11 = s - i - scrut6 = ==(tmp11, s) + let {scrut6, tmp12, tmp13, tmp14, tmp15} + tmp12 = s - i + scrut6 = ==(tmp12, s) if scrut6 is true then st else - tmp12 = s - i - tmp13 = st.add(arr.(tmp12)) - tmp14 = i - 1 - iter(tmp13, arr, tmp14, s) + tmp13 = s - i + tmp14 = st.add(arr.(tmp13)) + tmp15 = i - 1 + iter(tmp14, arr, tmp15, s) fun normalize() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize() p2__1 = p2.normalize() if p1__1 is Union then - tmp15 = p1__1.flat_Union_sp_0() + tmp16 = p1__1.flat_Union_sp_0() else - tmp15 = [p1__1] - arr11 = tmp15 + tmp16 = [p1__1] + arr11 = tmp16 if p2__1 is Union then - tmp16 = p2__1.flat_Union_sp_0() + tmp17 = p2__1.flat_Union_sp_0() else - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len(arr2) + tmp20 = len(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) fun startsWith(c) = - let {tmp24} - tmp24 = p1.startsWith(c) - if tmp24 is + let {tmp26} + tmp26 = p1.startsWith(c) + if tmp26 is false then p2.startsWith(c) else true private fun canBeEmpty_Union_sp_0() = false @@ -273,214 +275,223 @@ module StagedRegExp with private fun canBeEmpty_Union_sp_2() = true private fun canBeEmpty_Union_sp_3() = true private fun derive_Union_sp_0(c) = - let {tmp5, tmp6, tmp7} - tmp5 = p1.derive_Concat_sp_17(c) - tmp6 = p2.derive_Union_sp_1(c) - tmp7 = new Union.class(tmp5, tmp6) - tmp7.normalize_Union_sp_12() + let {tmp6, tmp7, tmp8} + tmp6 = p1.derive_Concat_sp_17(c) + tmp7 = p2.derive_Union_sp_1(c) + tmp8 = new Union.class(tmp6, tmp7) + tmp8.normalize_Union_sp_12() private fun derive_Union_sp_1(c) = - let {tmp5, tmp6, tmp7} - tmp5 = p1.derive_Concat_sp_18(c) - tmp6 = p2.derive_Concat_sp_19(c) - tmp7 = new Union.class(tmp5, tmp6) - tmp7.normalize_Union_sp_11() + let {tmp6, tmp7, tmp8} + tmp6 = p1.derive_Concat_sp_18(c) + tmp7 = p2.derive_Concat_sp_19(c) + tmp8 = new Union.class(tmp6, tmp7) + tmp8.normalize_Union_sp_11() private fun derive_Union_sp_2(c) = - let {tmp5, tmp6, tmp7} - tmp5 = p1.derive_Exact_sp_3(c) - tmp6 = p2.derive_Empty_sp_0(c) - tmp7 = new Union.class(tmp5, tmp6) - tmp7.normalize_Union_sp_7() + let {tmp6, tmp7, tmp8} + tmp6 = p1.derive_Exact_sp_3(c) + tmp7 = p2.derive_Empty_sp_0(c) + tmp8 = new Union.class(tmp6, tmp7) + tmp8.normalize_Union_sp_7() private fun derive_Union_sp_3(c) = - let {tmp5, tmp6, tmp7} - tmp5 = p1.derive_In_sp_2(c) - tmp6 = p2.derive_Empty_sp_0(c) - tmp7 = new Union.class(tmp5, tmp6) - tmp7.normalize_Union_sp_7() + let {tmp6, tmp7, tmp8} + tmp6 = p1.derive_In_sp_2(c) + tmp7 = p2.derive_Empty_sp_0(c) + tmp8 = new Union.class(tmp6, tmp7) + tmp8.normalize_Union_sp_7() private fun flat_Union_sp_0() = - let {p1__, scrut4, p2__, scrut5, tmp9, tmp10} + let {p1__, scrut4, p2__, scrut5, tmp10, tmp11} scrut4 = p1 if scrut4 is Union then - tmp9 = p1.flat() + tmp10 = p1.flat() else - tmp9 = [p1] - p1__ = tmp9 + tmp10 = [p1] + p1__ = tmp10 scrut5 = p2 if scrut5 is Union then - tmp10 = p2.flat() + tmp11 = p2.flat() else - tmp10 = [p2] - p2__ = tmp10 + tmp11 = [p2] + p2__ = tmp11 concat(p1__, p2__) private fun normalize_Union_sp_0() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize() p2__1 = p2.normalize() if p1__1 is Union then - tmp15 = p1__1.flat_Union_sp_0() + tmp16 = p1__1.flat_Union_sp_0() else - tmp15 = [p1__1] - arr11 = tmp15 + tmp16 = [p1__1] + arr11 = tmp16 if p2__1 is Union then - tmp16 = p2__1.flat_Union_sp_0() + tmp17 = p2__1.flat_Union_sp_0() else - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len(arr2) + tmp20 = len(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_1() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_Concat_sp_0() p2__1 = p2.normalize() if p1__1 is Union then - tmp15 = p1__1.flat_Union_sp_0() + tmp16 = p1__1.flat_Union_sp_0() else - tmp15 = [p1__1] - arr11 = tmp15 + tmp16 = [p1__1] + arr11 = tmp16 if p2__1 is Union then - tmp16 = p2__1.flat_Union_sp_0() + tmp17 = p2__1.flat_Union_sp_0() else - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len(arr2) + tmp20 = len(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_10() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_In_sp_5() p2__1 = p2.normalize_Empty_sp_0() - tmp15 = [p1__1] - arr11 = tmp15 - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = 1 - s2 = iter(tmp17, arr2, 0, 1) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = 1 + tmp20 = 1 + s2 = iter(tmp18, arr2, 1, 1) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_11() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} if p1 is Concat then p1__1 = p1.normalize_Concat_sp_33() Nothing then p1__1 = p1.normalize_Nothing_sp_0() p2__1 = p2.normalize() - tmp15 = [p1__1] - arr11 = tmp15 + tmp16 = [p1__1] + arr11 = tmp16 if p2__1 is Union then - tmp16 = p2__1.flat_Union_sp_0() + tmp17 = p2__1.flat_Union_sp_0() else - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len(arr2) + tmp20 = len(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_12() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} if p1 is Concat then p1__1 = p1.normalize_Concat_sp_31() Nothing then p1__1 = p1.normalize_Nothing_sp_0() p2__1 = p2.normalize() - tmp15 = [p1__1] - arr11 = tmp15 + tmp16 = [p1__1] + arr11 = tmp16 if p2__1 is Union then - tmp16 = p2__1.flat_Union_sp_0() + tmp17 = p2__1.flat_Union_sp_0() else - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len(arr2) + tmp20 = len(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_13() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_Concat_sp_41() p2__1 = p2.normalize_Union_sp_14() - tmp15 = [p1__1] - arr11 = tmp15 + tmp16 = [p1__1] + arr11 = tmp16 if p2__1 is Union then - tmp16 = p2__1.flat_Union_sp_0() + tmp17 = p2__1.flat_Union_sp_0() else - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len(arr2) + tmp20 = len(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_14() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_Concat_sp_42() p2__1 = p2.normalize_Concat_sp_43() - tmp15 = [p1__1] - arr11 = tmp15 - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len_StagedRegExp_sp_6(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_6(arr2) + tmp20 = len_StagedRegExp_sp_6(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_15() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_Exact_sp_8() p2__1 = p2.normalize_Empty_sp_0() - tmp15 = [p1__1] - arr11 = tmp15 - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = 1 - s2 = iter(tmp17, arr2, 0, 1) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = 1 + tmp20 = 1 + s2 = iter(tmp18, arr2, 1, 1) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_16() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_Concat_sp_37() if p2 is Empty then p2__1 = p2.normalize_Empty_sp_0() Nothing then p2__1 = p2.normalize_Nothing_sp_0() - tmp15 = [p1__1] - arr11 = tmp15 - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len_StagedRegExp_sp_5(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_5(arr2) + tmp20 = len_StagedRegExp_sp_5(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_17() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_Concat_sp_47() if p2 is Nothing then @@ -493,174 +504,183 @@ module StagedRegExp with p2__1 = p2.normalize_Concat_sp_37() Concat then p2__1 = p2.normalize_Concat_sp_50() - tmp15 = [p1__1] - arr11 = tmp15 - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len_StagedRegExp_sp_7(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_7(arr2) + tmp20 = len_StagedRegExp_sp_7(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_2() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_Concat_sp_3() if p2 is Concat then p2__1 = p2.normalize_Concat_sp_5() Nothing then p2__1 = p2.normalize_Nothing_sp_0() - tmp15 = [p1__1] - arr11 = tmp15 - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len_StagedRegExp_sp_0(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_0(arr2) + tmp20 = len_StagedRegExp_sp_0(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_3() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_Concat_sp_20() p2__1 = p2.normalize_Empty_sp_0() - tmp15 = [p1__1] - arr11 = tmp15 - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = 1 - s2 = iter(tmp17, arr2, 0, 1) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = 1 + tmp20 = 1 + s2 = iter(tmp18, arr2, 1, 1) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_4() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_Concat_sp_21() p2__1 = p2.normalize_Empty_sp_0() - tmp15 = [p1__1] - arr11 = tmp15 - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = 1 - s2 = iter(tmp17, arr2, 0, 1) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = 1 + tmp20 = 1 + s2 = iter(tmp18, arr2, 1, 1) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_5() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_Concat_sp_10() if p2 is Concat then p2__1 = p2.normalize_Concat_sp_12() Nothing then p2__1 = p2.normalize_Nothing_sp_0() - tmp15 = [p1__1] - arr11 = tmp15 - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len_StagedRegExp_sp_2(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_2(arr2) + tmp20 = len_StagedRegExp_sp_2(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_6() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_Concat_sp_23() if p2 is Nothing then p2__1 = p2.normalize_Nothing_sp_0() Concat then p2__1 = p2.normalize_Concat_sp_29() - tmp15 = [p1__1] - arr11 = tmp15 - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len_StagedRegExp_sp_3(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_3(arr2) + tmp20 = len_StagedRegExp_sp_3(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_7() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} if p1 is Empty then p1__1 = p1.normalize_Empty_sp_0() Nothing then p1__1 = p1.normalize_Nothing_sp_0() p2__1 = p2.normalize_Nothing_sp_0() - tmp15 = [p1__1] - arr11 = tmp15 - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = 1 - s2 = iter(tmp17, arr2, 0, 1) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = 1 + tmp20 = 1 + s2 = iter(tmp18, arr2, 1, 1) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_8() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_Concat_sp_34() if p2 is Empty then p2__1 = p2.normalize_Empty_sp_0() Nothing then p2__1 = p2.normalize_Nothing_sp_0() - tmp15 = [p1__1] - arr11 = tmp15 - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len_StagedRegExp_sp_5(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_5(arr2) + tmp20 = len_StagedRegExp_sp_5(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun normalize_Union_sp_9() = - let {p1__1, p2__1, arr11, arr2, s2, tmp15, tmp16, tmp17, tmp18, tmp19, tmp20} + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} p1__1 = p1.normalize_Concat_sp_35() p2__1 = p2.normalize() - tmp15 = [p1__1] - arr11 = tmp15 + tmp16 = [p1__1] + arr11 = tmp16 if p2__1 is Union then - tmp16 = p2__1.flat_Union_sp_0() + tmp17 = p2__1.flat_Union_sp_0() else - tmp16 = [p2__1] - arr2 = tmp16 - tmp17 = new DedupSet(arr11) - tmp18 = len(arr2) - s2 = iter(tmp17, arr2, 0, tmp18) - tmp19 = len(s2.arr) - tmp20 = len(s2.arr) - mkUnion(s2.arr, tmp19, tmp20) + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len(arr2) + tmp20 = len(arr2) + s2 = iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) private fun startsWith_Union_sp_0(c) = - let {tmp24} - tmp24 = p1.startsWith_Concat_sp_17(c) - if tmp24 is + let {tmp26} + tmp26 = p1.startsWith_Concat_sp_17(c) + if tmp26 is false then p2.startsWith_Union_sp_1(c) else true private fun startsWith_Union_sp_1(c) = - let {tmp24} - tmp24 = p1.startsWith_Concat_sp_18(c) - if tmp24 is + let {tmp26} + tmp26 = p1.startsWith_Concat_sp_18(c) + if tmp26 is false then p2.startsWith_Concat_sp_19(c) else true private fun startsWith_Union_sp_2(c) = - let {tmp24} - tmp24 = p1.startsWith_Exact_sp_3(c) - if tmp24 is + let {tmp26} + tmp26 = p1.startsWith_Exact_sp_3(c) + if tmp26 is false then p2.startsWith_Empty_sp_0(c) else true private fun startsWith_Union_sp_3(c) = - let {tmp24} - tmp24 = p1.startsWith_In_sp_2(c) - if tmp24 is + let {tmp26} + tmp26 = p1.startsWith_In_sp_2(c) + if tmp26 is false then p2.startsWith_Empty_sp_0(c) else true class In(val chars) extends RegExp() with @@ -725,18 +745,18 @@ module StagedRegExp with else false else false fun derive(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive(c) scrut8 = p1.canBeEmpty() if scrut8 is true then - tmp25 = new Concat.class(p1__2, p2) - tmp26 = p2.derive(c) - tmp27 = new Union(tmp25, tmp26) - tmp27.normalize_Union_sp_1() + tmp27 = new Concat.class(p1__2, p2) + tmp28 = p2.derive(c) + tmp29 = new Union(tmp27, tmp28) + tmp29.normalize_Union_sp_1() else - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_0() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_0() fun eq(other) = let {p2__2, p1__4, scrut11, scrut12, arg_Concat_0_, arg_Concat_1_} if other is @@ -755,18 +775,18 @@ module StagedRegExp with else false else false fun normalize() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize() if p1__3 is Empty then p2.normalize() Nothing then p1__3 else - tmp29 = p2.normalize() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize() + new Concat.class(p1__3, tmp31) fun startsWith(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith(c) + if tmp32 is false then scrut13 = p1.canBeEmpty() if scrut13 is @@ -805,110 +825,110 @@ module StagedRegExp with private fun canBeEmpty_Concat_sp_8() = false private fun canBeEmpty_Concat_sp_9() = false private fun derive_Concat_sp_0(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Concat_sp_1(c) scrut8 = p1.canBeEmpty_Concat_sp_1() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_3() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_3() private fun derive_Concat_sp_1(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_In_sp_0(c) scrut8 = p1.canBeEmpty_In_sp_0() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_2() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_2() private fun derive_Concat_sp_10(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Concat_sp_11(c) scrut8 = p1.canBeEmpty_Concat_sp_11() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_27() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_27() private fun derive_Concat_sp_11(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Concat_sp_12(c) scrut8 = p1.canBeEmpty_Concat_sp_12() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_26() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_26() private fun derive_Concat_sp_12(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Not_sp_0(c) scrut8 = p1.canBeEmpty_Not_sp_0() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_25() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_25() private fun derive_Concat_sp_13(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive(c) scrut8 = p1.canBeEmpty() if scrut8 is true then - tmp25 = new Concat.class(p1__2, p2) - tmp26 = p2.derive_Concat_sp_10(c) - tmp27 = new Union(tmp25, tmp26) - tmp27.normalize_Union_sp_6() + tmp27 = new Concat.class(p1__2, p2) + tmp28 = p2.derive_Concat_sp_10(c) + tmp29 = new Union(tmp27, tmp28) + tmp29.normalize_Union_sp_6() else - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_23() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_23() private fun derive_Concat_sp_14(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Concat_sp_15(c) scrut8 = p1.canBeEmpty_Concat_sp_15() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_44() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_44() private fun derive_Concat_sp_15(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Concat_sp_16(c) scrut8 = p1.canBeEmpty_Concat_sp_16() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_38() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_38() private fun derive_Concat_sp_16(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Union_sp_0(c) scrut8 = p1.canBeEmpty_Union_sp_0() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_37() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_37() private fun derive_Concat_sp_17(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Exact_sp_2(c) scrut8 = p1.canBeEmpty_Exact_sp_2() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_30() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_30() private fun derive_Concat_sp_18(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Exact_sp_2(c) scrut8 = p1.canBeEmpty_Exact_sp_2() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_32() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_32() private fun derive_Concat_sp_19(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Union_sp_2(c) scrut8 = p1.canBeEmpty_Union_sp_2() - tmp25 = new Concat.class(p1__2, p2) - tmp26 = p2.derive_Concat_sp_20(c) - tmp27 = new Union(tmp25, tmp26) - tmp27.normalize_Union_sp_9() + tmp27 = new Concat.class(p1__2, p2) + tmp28 = p2.derive_Concat_sp_20(c) + tmp29 = new Union(tmp27, tmp28) + tmp29.normalize_Union_sp_9() private fun derive_Concat_sp_2(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Star_sp_0(c) scrut8 = p1.canBeEmpty_Star_sp_0() - tmp25 = new Concat.class(p1__2, p2) - tmp26 = p2.derive_Concat_sp_3(c) - tmp27 = new Union(tmp25, tmp26) - tmp27.normalize_Union_sp_2() + tmp27 = new Concat.class(p1__2, p2) + tmp28 = p2.derive_Concat_sp_3(c) + tmp29 = new Union(tmp27, tmp28) + tmp29.normalize_Union_sp_2() private fun derive_Concat_sp_20(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Union_sp_3(c) scrut8 = p1.canBeEmpty_Union_sp_3() - tmp25 = new Concat.class(p1__2, p2) - tmp26 = p2.derive_In_sp_2(c) - tmp27 = new Union(tmp25, tmp26) - tmp27.normalize_Union_sp_8() + tmp27 = new Concat.class(p1__2, p2) + tmp28 = p2.derive_In_sp_2(c) + tmp29 = new Union(tmp27, tmp28) + tmp29.normalize_Union_sp_8() private fun derive_Concat_sp_21(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Concat_sp_22(c) scrut8 = p1.canBeEmpty_Concat_sp_22() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_49() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_49() private fun derive_Concat_sp_22(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} if p1 is Exact then p1__2 = p1.derive_Exact_sp_4(c) @@ -919,23 +939,23 @@ module StagedRegExp with scrut8 = p1.canBeEmpty_Exact_sp_4() Concat then scrut8 = p1.canBeEmpty_Concat_sp_23() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_47() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_47() private fun derive_Concat_sp_23(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive(c) scrut8 = p1.canBeEmpty() if scrut8 is true then - tmp25 = new Concat.class(p1__2, p2) - tmp26 = p2.derive_Exact_sp_4(c) - tmp27 = new Union(tmp25, tmp26) - tmp27.normalize_Union_sp_16() + tmp27 = new Concat.class(p1__2, p2) + tmp28 = p2.derive_Exact_sp_4(c) + tmp29 = new Union(tmp27, tmp28) + tmp29.normalize_Union_sp_16() else - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_37() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_37() private fun derive_Concat_sp_24(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} if p1 is Concat then p1__2 = p1.derive_Concat_sp_25(c) @@ -946,10 +966,10 @@ module StagedRegExp with scrut8 = p1.canBeEmpty_Concat_sp_25() Concat then scrut8 = p1.canBeEmpty_Concat_sp_26() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_0() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_0() private fun derive_Concat_sp_25(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} if p1 is Exact then p1__2 = p1.derive_Exact_sp_4(c) @@ -960,91 +980,91 @@ module StagedRegExp with scrut8 = p1.canBeEmpty_Exact_sp_4() Concat then scrut8 = p1.canBeEmpty_Concat_sp_23() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_50() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_50() private fun derive_Concat_sp_26(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive(c) scrut8 = p1.canBeEmpty() if scrut8 is true then - tmp25 = new Concat.class(p1__2, p2) + tmp27 = new Concat.class(p1__2, p2) if p2 is Nothing then - tmp26 = p2.derive_Nothing_sp_0(c) + tmp28 = p2.derive_Nothing_sp_0(c) Nothing then - tmp26 = p2.derive_Nothing_sp_0(c) + tmp28 = p2.derive_Nothing_sp_0(c) Concat then - tmp26 = p2.derive_Concat_sp_25(c) - tmp27 = new Union(tmp25, tmp26) - tmp27.normalize_Union_sp_17() + tmp28 = p2.derive_Concat_sp_25(c) + tmp29 = new Union(tmp27, tmp28) + tmp29.normalize_Union_sp_17() else - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_47() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_47() private fun derive_Concat_sp_3(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Exact_sp_0(c) scrut8 = p1.canBeEmpty_Exact_sp_0() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_8() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_8() private fun derive_Concat_sp_4(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Concat_sp_5(c) scrut8 = p1.canBeEmpty_Concat_sp_5() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_13() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_13() private fun derive_Concat_sp_5(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Concat_sp_6(c) scrut8 = p1.canBeEmpty_Concat_sp_6() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_10() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_10() private fun derive_Concat_sp_6(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_In_sp_1(c) scrut8 = p1.canBeEmpty_In_sp_1() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_9() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_9() private fun derive_Concat_sp_7(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Concat_sp_8(c) scrut8 = p1.canBeEmpty_Concat_sp_8() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_23() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_23() private fun derive_Concat_sp_8(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Star_sp_1(c) scrut8 = p1.canBeEmpty_Star_sp_1() - tmp25 = new Concat.class(p1__2, p2) - tmp26 = p2.derive_Concat_sp_9(c) - tmp27 = new Union(tmp25, tmp26) - tmp27.normalize_Union_sp_5() + tmp27 = new Concat.class(p1__2, p2) + tmp28 = p2.derive_Concat_sp_9(c) + tmp29 = new Union(tmp27, tmp28) + tmp29.normalize_Union_sp_5() private fun derive_Concat_sp_9(c) = - let {p1__2, scrut8, tmp25, tmp26, tmp27, tmp28} + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = p1.derive_Exact_sp_1(c) scrut8 = p1.canBeEmpty_Exact_sp_1() - tmp28 = new Concat.class(p1__2, p2) - tmp28.normalize_Concat_sp_22() + tmp30 = new Concat.class(p1__2, p2) + tmp30.normalize_Concat_sp_22() private fun normalize_Concat_sp_0() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize() if p1__3 is Empty then p2.normalize() Nothing then p1__3 else - tmp29 = p2.normalize() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_1() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize() if p1__3 is Empty then p2.normalize_Star_sp_0() Nothing then p1__3 else - tmp29 = p2.normalize_Star_sp_0() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Star_sp_0() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_10() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Star then p1__3 = p1.normalize_Star_sp_2() @@ -1053,20 +1073,20 @@ module StagedRegExp with if p1__3 is Nothing then p1__3 else - tmp29 = p2.normalize_Concat_sp_11() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_11() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_11() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Exact_sp_2() - tmp29 = p2.normalize_Concat_sp_12() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_12() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_12() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Exact_sp_3() - tmp29 = p2.normalize_Exact_sp_3() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Exact_sp_3() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_13() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Nothing then p1__3 = p1.normalize_Nothing_sp_0() @@ -1075,44 +1095,44 @@ module StagedRegExp with if p1__3 is Nothing then p1__3 else - tmp29 = p2.normalize_Concat_sp_15() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_15() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_14() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Star_sp_2() - tmp29 = p2.normalize_Concat_sp_11() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_11() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_15() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Concat_sp_16() - tmp29 = p2.normalize_Concat_sp_19() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_19() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_16() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Concat_sp_17() - tmp29 = p2.normalize_Concat_sp_18() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_18() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_17() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Not_sp_0() - tmp29 = p2.normalize_Star_sp_3() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Star_sp_3() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_18() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Not_sp_1() - tmp29 = p2.normalize_Star_sp_4() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Star_sp_4() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_19() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Union_sp_3() if p1__3 is Empty then p2.normalize_Union_sp_4() Nothing then p1__3 else - tmp29 = p2.normalize_Union_sp_4() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Union_sp_4() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_2() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Empty then p1__3 = p1.normalize_Empty_sp_0() @@ -1122,17 +1142,17 @@ module StagedRegExp with Empty then p2.normalize_Star_sp_1() Nothing then p1__3 private fun normalize_Concat_sp_20() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Exact_sp_4() - tmp29 = p2.normalize_Star_sp_5() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Star_sp_5() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_21() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Exact_sp_5() - tmp29 = p2.normalize_Star_sp_5() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Star_sp_5() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_22() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Empty then p1__3 = p1.normalize_Empty_sp_0() @@ -1142,21 +1162,21 @@ module StagedRegExp with Empty then p2.normalize_Concat_sp_12() Nothing then p1__3 private fun normalize_Concat_sp_23() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize() if p1__3 is Empty then p2.normalize_Concat_sp_24() Nothing then p1__3 else - tmp29 = p2.normalize_Concat_sp_24() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_24() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_24() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Concat_sp_16() - tmp29 = p2.normalize() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_25() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Empty then p1__3 = p1.normalize_Empty_sp_0() @@ -1166,7 +1186,7 @@ module StagedRegExp with Empty then p2.normalize_Star_sp_3() Nothing then p1__3 private fun normalize_Concat_sp_26() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Star then p1__3 = p1.normalize_Star_sp_3() @@ -1175,10 +1195,10 @@ module StagedRegExp with if p1__3 is Nothing then p1__3 else - tmp29 = p2.normalize_Concat_sp_18() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_18() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_27() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Nothing then p1__3 = p1.normalize_Nothing_sp_0() @@ -1187,20 +1207,20 @@ module StagedRegExp with if p1__3 is Nothing then p1__3 else - tmp29 = p2.normalize() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_28() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Star_sp_3() - tmp29 = p2.normalize_Concat_sp_18() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_18() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_29() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Concat_sp_28() - tmp29 = p2.normalize() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_3() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Star then p1__3 = p1.normalize_Star_sp_1() @@ -1209,10 +1229,10 @@ module StagedRegExp with if p1__3 is Nothing then p1__3 else - tmp29 = p2.normalize_Concat_sp_4() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_4() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_30() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Empty then p1__3 = p1.normalize_Empty_sp_0() @@ -1222,12 +1242,12 @@ module StagedRegExp with Empty then p2.normalize_Concat_sp_31() Nothing then p1__3 private fun normalize_Concat_sp_31() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Exact_sp_6() - tmp29 = p2.normalize_In_sp_3() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_In_sp_3() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_32() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Empty then p1__3 = p1.normalize_Empty_sp_0() @@ -1237,48 +1257,48 @@ module StagedRegExp with Empty then p2.normalize_Concat_sp_33() Nothing then p1__3 private fun normalize_Concat_sp_33() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_In_sp_4() - tmp29 = p2.normalize_In_sp_5() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_In_sp_5() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_34() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize() if p1__3 is Empty then p2.normalize_In_sp_5() Nothing then p1__3 else - tmp29 = p2.normalize_In_sp_5() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_In_sp_5() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_35() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize() if p1__3 is Empty then p2.normalize_Concat_sp_36() Nothing then p1__3 else - tmp29 = p2.normalize_Concat_sp_36() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_36() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_36() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Union_sp_10() if p1__3 is Empty then p2.normalize_In_sp_5() Nothing then p1__3 else - tmp29 = p2.normalize_In_sp_5() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_In_sp_5() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_37() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize() if p1__3 is Empty then p2.normalize_Exact_sp_1() Nothing then p1__3 else - tmp29 = p2.normalize_Exact_sp_1() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Exact_sp_1() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_38() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Exact then p1__3 = p1.normalize_Exact_sp_1() @@ -1289,51 +1309,51 @@ module StagedRegExp with if p1__3 is Nothing then p1__3 else - tmp29 = p2.normalize_Concat_sp_39() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_39() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_39() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Concat_sp_40() if p1__3 is Nothing then p1__3 else - tmp29 = p2.normalize_Concat_sp_40() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_40() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_4() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Exact_sp_0() - tmp29 = p2.normalize_Concat_sp_5() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_5() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_40() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Union_sp_13() if p1__3 is Empty then p2.normalize_Exact_sp_1() Nothing then p1__3 else - tmp29 = p2.normalize_Exact_sp_1() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Exact_sp_1() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_41() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Exact_sp_7() - tmp29 = p2.normalize_Concat_sp_31() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_31() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_42() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Exact_sp_7() - tmp29 = p2.normalize_Concat_sp_33() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_33() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_43() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Union_sp_15() if p1__3 is Empty then p2.normalize_Concat_sp_36() Nothing then p1__3 else - tmp29 = p2.normalize_Concat_sp_36() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_36() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_44() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Nothing then p1__3 = p1.normalize_Nothing_sp_0() @@ -1344,10 +1364,10 @@ module StagedRegExp with if p1__3 is Nothing then p1__3 else - tmp29 = p2.normalize_Union_sp_13() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Union_sp_13() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_45() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Exact then p1__3 = p1.normalize_Exact_sp_1() @@ -1358,12 +1378,12 @@ module StagedRegExp with else if p2 is Nothing then - tmp29 = p2.normalize_Nothing_sp_0() + tmp31 = p2.normalize_Nothing_sp_0() Concat then - tmp29 = p2.normalize_Concat_sp_46() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_46() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_46() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Exact then p1__3 = p1.normalize_Exact_sp_1() @@ -1374,14 +1394,14 @@ module StagedRegExp with else if p2 is Exact then - tmp29 = p2.normalize_Exact_sp_1() + tmp31 = p2.normalize_Exact_sp_1() Nothing then - tmp29 = p2.normalize_Nothing_sp_0() + tmp31 = p2.normalize_Nothing_sp_0() Concat then - tmp29 = p2.normalize_Concat_sp_37() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_37() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_47() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize() if p1__3 is Empty then @@ -1393,14 +1413,14 @@ module StagedRegExp with else if p2 is Nothing then - tmp29 = p2.normalize_Nothing_sp_0() + tmp31 = p2.normalize_Nothing_sp_0() Nothing then - tmp29 = p2.normalize_Nothing_sp_0() + tmp31 = p2.normalize_Nothing_sp_0() Concat then - tmp29 = p2.normalize_Concat_sp_48() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_48() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_48() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Exact then p1__3 = p1.normalize_Exact_sp_1() @@ -1411,16 +1431,16 @@ module StagedRegExp with else if p2 is Exact then - tmp29 = p2.normalize_Exact_sp_1() + tmp31 = p2.normalize_Exact_sp_1() Nothing then - tmp29 = p2.normalize_Nothing_sp_0() + tmp31 = p2.normalize_Nothing_sp_0() Nothing then - tmp29 = p2.normalize_Nothing_sp_0() + tmp31 = p2.normalize_Nothing_sp_0() Concat then - tmp29 = p2.normalize_Concat_sp_37() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_37() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_49() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Nothing then p1__3 = p1.normalize_Nothing_sp_0() @@ -1433,15 +1453,15 @@ module StagedRegExp with if p1__3 is Nothing then p1__3 else - tmp29 = p2.normalize() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_5() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Concat_sp_6() - tmp29 = p2.normalize_Concat_sp_7() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_7() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_50() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize() if p1__3 is Empty then @@ -1454,26 +1474,26 @@ module StagedRegExp with else if p2 is Exact then - tmp29 = p2.normalize_Exact_sp_1() + tmp31 = p2.normalize_Exact_sp_1() Nothing then - tmp29 = p2.normalize_Nothing_sp_0() + tmp31 = p2.normalize_Nothing_sp_0() Nothing then - tmp29 = p2.normalize_Nothing_sp_0() + tmp31 = p2.normalize_Nothing_sp_0() Concat then - tmp29 = p2.normalize_Concat_sp_37() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_37() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_6() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_In_sp_0() - tmp29 = p2.normalize_Star_sp_1() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Star_sp_1() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_7() = - let {p1__3, tmp29} + let {p1__3, tmp31} p1__3 = p1.normalize_Exact_sp_1() - tmp29 = p2.normalize_Concat_sp_6() - new Concat.class(p1__3, tmp29) + tmp31 = p2.normalize_Concat_sp_6() + new Concat.class(p1__3, tmp31) private fun normalize_Concat_sp_8() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Empty then p1__3 = p1.normalize_Empty_sp_0() @@ -1483,7 +1503,7 @@ module StagedRegExp with Empty then p2.normalize_Concat_sp_5() Nothing then p1__3 private fun normalize_Concat_sp_9() = - let {p1__3, tmp29} + let {p1__3, tmp31} if p1 is Empty then p1__3 = p1.normalize_Empty_sp_0() @@ -1493,49 +1513,49 @@ module StagedRegExp with Empty then p2.normalize_Star_sp_2() Nothing then p1__3 private fun startsWith_Concat_sp_0(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Concat_sp_1(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Concat_sp_1(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Concat_sp_1() false else true private fun startsWith_Concat_sp_1(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_In_sp_0(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_In_sp_0(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_In_sp_0() false else true private fun startsWith_Concat_sp_10(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Concat_sp_11(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Concat_sp_11(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Concat_sp_11() false else true private fun startsWith_Concat_sp_11(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Concat_sp_12(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Concat_sp_12(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Concat_sp_12() false else true private fun startsWith_Concat_sp_12(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Not_sp_0(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Not_sp_0(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Not_sp_0() false else true private fun startsWith_Concat_sp_13(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith(c) + if tmp32 is false then scrut13 = p1.canBeEmpty() if scrut13 is @@ -1547,49 +1567,49 @@ module StagedRegExp with else false else true private fun startsWith_Concat_sp_14(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Concat_sp_15(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Concat_sp_15(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Concat_sp_15() false else true private fun startsWith_Concat_sp_15(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Concat_sp_16(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Concat_sp_16(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Concat_sp_16() false else true private fun startsWith_Concat_sp_16(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Union_sp_0(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Union_sp_0(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Union_sp_0() false else true private fun startsWith_Concat_sp_17(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Exact_sp_2(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Exact_sp_2(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Exact_sp_2() false else true private fun startsWith_Concat_sp_18(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Exact_sp_2(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Exact_sp_2(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Exact_sp_2() false else true private fun startsWith_Concat_sp_19(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Union_sp_2(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Union_sp_2(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Union_sp_2() scrut14 = p2.startsWith_Concat_sp_20(c) @@ -1598,9 +1618,9 @@ module StagedRegExp with else false else true private fun startsWith_Concat_sp_2(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Star_sp_0(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Star_sp_0(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Star_sp_0() scrut14 = p2.startsWith_Concat_sp_3(c) @@ -1609,9 +1629,9 @@ module StagedRegExp with else false else true private fun startsWith_Concat_sp_20(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Union_sp_3(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Union_sp_3(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Union_sp_3() scrut14 = p2.startsWith_In_sp_2(c) @@ -1620,21 +1640,21 @@ module StagedRegExp with else false else true private fun startsWith_Concat_sp_21(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Concat_sp_22(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Concat_sp_22(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Concat_sp_22() false else true private fun startsWith_Concat_sp_22(c) = - let {scrut13, scrut14, tmp30} + let {scrut13, scrut14, tmp32} if p1 is Exact then - tmp30 = p1.startsWith_Exact_sp_4(c) + tmp32 = p1.startsWith_Exact_sp_4(c) Concat then - tmp30 = p1.startsWith_Concat_sp_23(c) - if tmp30 is + tmp32 = p1.startsWith_Concat_sp_23(c) + if tmp32 is false then if p1 is Exact then @@ -1644,9 +1664,9 @@ module StagedRegExp with false else true private fun startsWith_Concat_sp_23(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith(c) + if tmp32 is false then scrut13 = p1.canBeEmpty() if scrut13 is @@ -1658,13 +1678,13 @@ module StagedRegExp with else false else true private fun startsWith_Concat_sp_24(c) = - let {scrut13, scrut14, tmp30} + let {scrut13, scrut14, tmp32} if p1 is Concat then - tmp30 = p1.startsWith_Concat_sp_25(c) + tmp32 = p1.startsWith_Concat_sp_25(c) Concat then - tmp30 = p1.startsWith_Concat_sp_26(c) - if tmp30 is + tmp32 = p1.startsWith_Concat_sp_26(c) + if tmp32 is false then if p1 is Concat then @@ -1674,13 +1694,13 @@ module StagedRegExp with false else true private fun startsWith_Concat_sp_25(c) = - let {scrut13, scrut14, tmp30} + let {scrut13, scrut14, tmp32} if p1 is Exact then - tmp30 = p1.startsWith_Exact_sp_4(c) + tmp32 = p1.startsWith_Exact_sp_4(c) Concat then - tmp30 = p1.startsWith_Concat_sp_23(c) - if tmp30 is + tmp32 = p1.startsWith_Concat_sp_23(c) + if tmp32 is false then if p1 is Exact then @@ -1690,9 +1710,9 @@ module StagedRegExp with false else true private fun startsWith_Concat_sp_26(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith(c) + if tmp32 is false then scrut13 = p1.canBeEmpty() if scrut13 is @@ -1710,49 +1730,49 @@ module StagedRegExp with else false else true private fun startsWith_Concat_sp_3(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Exact_sp_0(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Exact_sp_0(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Exact_sp_0() false else true private fun startsWith_Concat_sp_4(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Concat_sp_5(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Concat_sp_5(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Concat_sp_5() false else true private fun startsWith_Concat_sp_5(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Concat_sp_6(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Concat_sp_6(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Concat_sp_6() false else true private fun startsWith_Concat_sp_6(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_In_sp_1(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_In_sp_1(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_In_sp_1() false else true private fun startsWith_Concat_sp_7(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Concat_sp_8(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Concat_sp_8(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Concat_sp_8() false else true private fun startsWith_Concat_sp_8(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Star_sp_1(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Star_sp_1(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Star_sp_1() scrut14 = p2.startsWith_Concat_sp_9(c) @@ -1761,9 +1781,9 @@ module StagedRegExp with else false else true private fun startsWith_Concat_sp_9(c) = - let {scrut13, scrut14, tmp30} - tmp30 = p1.startsWith_Exact_sp_1(c) - if tmp30 is + let {scrut13, scrut14, tmp32} + tmp32 = p1.startsWith_Exact_sp_1(c) + if tmp32 is false then scrut13 = p1.canBeEmpty_Exact_sp_1() false @@ -1772,11 +1792,11 @@ module StagedRegExp with () fun canBeEmpty() = true fun derive(c) = - let {tmp31, tmp32, tmp33} - tmp31 = p.derive(c) - tmp32 = new Star.class(p) - tmp33 = new Concat(tmp31, tmp32) - tmp33.normalize_Concat_sp_1() + let {tmp33, tmp34, tmp35} + tmp33 = p.derive(c) + tmp34 = new Star.class(p) + tmp35 = new Concat(tmp33, tmp34) + tmp35.normalize_Concat_sp_1() fun eq(other) = let {p__, arg_Star_0_} if other is @@ -1786,72 +1806,72 @@ module StagedRegExp with p.eq(p__) else false fun normalize() = - let {tmp34} - tmp34 = p.normalize() - new Star.class(tmp34) + let {tmp36} + tmp36 = p.normalize() + new Star.class(tmp36) fun startsWith(c) = p.startsWith(c) private fun canBeEmpty_Star_sp_0() = true private fun canBeEmpty_Star_sp_1() = true private fun derive_Star_sp_0(c) = - let {tmp31, tmp32, tmp33} - tmp31 = p.derive_In_sp_0(c) - tmp32 = new Star.class(p) - tmp33 = new Concat(tmp31, tmp32) - tmp33.normalize_Concat_sp_2() + let {tmp33, tmp34, tmp35} + tmp33 = p.derive_In_sp_0(c) + tmp34 = new Star.class(p) + tmp35 = new Concat(tmp33, tmp34) + tmp35.normalize_Concat_sp_2() private fun derive_Star_sp_1(c) = - let {tmp31, tmp32, tmp33} - tmp31 = p.derive_In_sp_1(c) - tmp32 = new Star.class(p) - tmp33 = new Concat(tmp31, tmp32) - tmp33.normalize_Concat_sp_9() + let {tmp33, tmp34, tmp35} + tmp33 = p.derive_In_sp_1(c) + tmp34 = new Star.class(p) + tmp35 = new Concat(tmp33, tmp34) + tmp35.normalize_Concat_sp_9() private fun normalize_Star_sp_0() = - let {tmp34} - tmp34 = p.normalize() - new Star.class(tmp34) + let {tmp36} + tmp36 = p.normalize() + new Star.class(tmp36) private fun normalize_Star_sp_1() = - let {tmp34} - tmp34 = p.normalize_In_sp_0() - new Star.class(tmp34) + let {tmp36} + tmp36 = p.normalize_In_sp_0() + new Star.class(tmp36) private fun normalize_Star_sp_2() = - let {tmp34} - tmp34 = p.normalize_In_sp_1() - new Star.class(tmp34) + let {tmp36} + tmp36 = p.normalize_In_sp_1() + new Star.class(tmp36) private fun normalize_Star_sp_3() = - let {tmp34} - tmp34 = p.normalize_Not_sp_0() - new Star.class(tmp34) + let {tmp36} + tmp36 = p.normalize_Not_sp_0() + new Star.class(tmp36) private fun normalize_Star_sp_4() = - let {tmp34} - tmp34 = p.normalize_Not_sp_1() - new Star.class(tmp34) + let {tmp36} + tmp36 = p.normalize_Not_sp_1() + new Star.class(tmp36) private fun normalize_Star_sp_5() = - let {tmp34} - tmp34 = p.normalize_In_sp_2() - new Star.class(tmp34) + let {tmp36} + tmp36 = p.normalize_In_sp_2() + new Star.class(tmp36) private fun startsWith_Star_sp_0(c) = p.startsWith_In_sp_0(c) private fun startsWith_Star_sp_1(c) = p.startsWith_In_sp_1(c) fun arrEq(arr1, arr2) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".eq(arr1, arr2) fun concat(lhs, rhs) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".concat(lhs, rhs) fun digits() = - let {tmp46, tup_8} + let {tmp51, tup_8} tup_8 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - tmp46 = tup_8 - new In(tmp46) + tmp51 = tup_8 + new In(tmp51) fun has(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) fun len(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) fun match(p, s) = matchImpl_StagedRegExp_sp_0(p, s, "") fun matchAll(p, s) = - let {tmp61} - tmp61 = [] - matchAllImpl_StagedRegExp_sp_0(p, s, tmp61) + let {tmp66} + tmp66 = [] + matchAllImpl_StagedRegExp_sp_0(p, s, tmp66) fun matchAllEmail(s) = - let {p7, email, tmp62, tmp63, tmp64, tmp65, tmp66, tmp67, tmp68, tmp69, tmp70, tup_9, tup_10, tup_11, obj_12, tup_13, obj_14, obj_15, obj_16} + let {p7, email, tmp67, tmp68, tmp69, tmp70, tmp71, tmp72, tmp73, tmp74, tmp75, tup_9, tup_10, tup_11, obj_12, tup_13, obj_14, obj_15, obj_16} tup_9 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - tmp62 = tup_9 - tmp63 = ["-", "."] + tmp67 = tup_9 + tmp68 = ["-", "."] tup_10 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] - tmp64 = tup_10 - tmp65 = new In(tmp64) + tmp69 = tup_10 + tmp70 = new In(tmp69) tup_11 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] obj_12 = new In(tup_11) tup_13 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] @@ -1859,51 +1879,51 @@ module StagedRegExp with obj_15 = new Star(obj_14) obj_16 = new Concat(obj_12, obj_15) p7 = obj_16 - tmp66 = new Exact("@") - tmp67 = new Exact(".") - tmp68 = new Concat(tmp67, p7) - tmp69 = new Concat(p7, tmp68) - tmp70 = new Concat(tmp66, tmp69) - email = new Concat(p7, tmp70) + tmp71 = new Exact("@") + tmp72 = new Exact(".") + tmp73 = new Concat(tmp72, p7) + tmp74 = new Concat(p7, tmp73) + tmp75 = new Concat(tmp71, tmp74) + email = new Concat(p7, tmp75) matchAll_StagedRegExp_sp_0(email, s) fun matchAllIPv4(s) = - let {fo, fi, segment, ipv4, tmp97, tmp98, tmp99, tmp100, tmp101, tmp102, tmp103, tmp104, tmp105, tmp106, tmp107, tmp108, tmp109, tmp110, tmp111, tmp112, tmp113, tmp114, tmp115, tmp116, tmp117, tup_59, obj_60, obj_61, obj_62, obj_63, tup_64, obj_65, tup_66, obj_67, obj_68, obj_69, tup_70, obj_71, obj_157, obj_158, tup_159, obj_160, obj_161, obj_162, obj_163, tup_164, obj_165, tup_166, obj_167, obj_168, obj_169, obj_170, obj_171, obj_172, tup_173, obj_174, obj_175, obj_176, tup_177, obj_178, obj_179, obj_180, obj_181, obj_182, obj_183, obj_184, obj_185, obj_186, tup_187, obj_188, obj_189, obj_190, obj_191, tup_192, obj_193, tup_194, obj_195, obj_196, obj_197, obj_198, obj_199, obj_200, tup_201, obj_202, obj_203, obj_204, tup_205, obj_206, obj_207, obj_208, obj_209, obj_210, obj_211, obj_212, obj_213, obj_214, tup_215, obj_216, obj_217, obj_218, obj_219, tup_220, obj_221, tup_222, obj_223, obj_224, obj_225, obj_226, obj_227, obj_228, tup_229, obj_230, obj_231, obj_232, tup_233, obj_234, obj_235, obj_236, obj_237, obj_238, obj_239, obj_240, obj_241, obj_242} - tmp97 = ["0", "1", "2", "3", "4"] - fo = new In(tmp97) - tmp98 = ["0", "1", "2", "3", "4", "5"] - fi = new In(tmp98) - tmp99 = new Exact("2") - tmp100 = new Exact("5") - tmp101 = new Concat(tmp100, fi) - tmp102 = new Concat(tmp99, tmp101) - tmp103 = new Exact("2") + let {fo, fi, segment, ipv4, tmp102, tmp103, tmp104, tmp105, tmp106, tmp107, tmp108, tmp109, tmp110, tmp111, tmp112, tmp113, tmp114, tmp115, tmp116, tmp117, tmp118, tmp119, tmp120, tmp121, tmp122, tup_59, obj_60, obj_61, obj_62, obj_63, tup_64, obj_65, tup_66, obj_67, obj_68, obj_69, tup_70, obj_71, obj_157, obj_158, tup_159, obj_160, obj_161, obj_162, obj_163, tup_164, obj_165, tup_166, obj_167, obj_168, obj_169, obj_170, obj_171, obj_172, tup_173, obj_174, obj_175, obj_176, tup_177, obj_178, obj_179, obj_180, obj_181, obj_182, obj_183, obj_184, obj_185, obj_186, tup_187, obj_188, obj_189, obj_190, obj_191, tup_192, obj_193, tup_194, obj_195, obj_196, obj_197, obj_198, obj_199, obj_200, tup_201, obj_202, obj_203, obj_204, tup_205, obj_206, obj_207, obj_208, obj_209, obj_210, obj_211, obj_212, obj_213, obj_214, tup_215, obj_216, obj_217, obj_218, obj_219, tup_220, obj_221, tup_222, obj_223, obj_224, obj_225, obj_226, obj_227, obj_228, tup_229, obj_230, obj_231, obj_232, tup_233, obj_234, obj_235, obj_236, obj_237, obj_238, obj_239, obj_240, obj_241, obj_242} + tmp102 = ["0", "1", "2", "3", "4"] + fo = new In(tmp102) + tmp103 = ["0", "1", "2", "3", "4", "5"] + fi = new In(tmp103) + tmp104 = new Exact("2") + tmp105 = new Exact("5") + tmp106 = new Concat(tmp105, fi) + tmp107 = new Concat(tmp104, tmp106) + tmp108 = new Exact("2") tup_59 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] obj_60 = new In(tup_59) - tmp104 = obj_60 - tmp105 = new Concat(fo, tmp104) - tmp106 = new Concat(tmp103, tmp105) - tmp107 = new Exact("1") + tmp109 = obj_60 + tmp110 = new Concat(fo, tmp109) + tmp111 = new Concat(tmp108, tmp110) + tmp112 = new Exact("1") obj_61 = new Exact("1") obj_62 = new Empty() obj_63 = new Union(obj_61, obj_62) - tmp108 = obj_63 + tmp113 = obj_63 tup_64 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] obj_65 = new In(tup_64) - tmp109 = obj_65 + tmp114 = obj_65 tup_66 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] obj_67 = new In(tup_66) obj_68 = new Empty() obj_69 = new Union(obj_67, obj_68) - tmp110 = obj_69 + tmp115 = obj_69 tup_70 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] obj_71 = new In(tup_70) - tmp111 = obj_71 - tmp112 = new Concat(tmp110, tmp111) - tmp113 = new Concat(tmp108, tmp112) - tmp114 = new Union(tmp106, tmp113) - segment = new Union(tmp102, tmp114) - tmp115 = new Exact(".") - tmp116 = new Concat(segment, tmp115) + tmp116 = obj_71 + tmp117 = new Concat(tmp115, tmp116) + tmp118 = new Concat(tmp113, tmp117) + tmp119 = new Union(tmp111, tmp118) + segment = new Union(tmp107, tmp119) + tmp120 = new Exact(".") + tmp121 = new Concat(segment, tmp120) obj_157 = new Exact("2") obj_158 = new Exact("5") tup_159 = ["0", "1", "2", "3", "4", "5"] @@ -1990,13 +2010,13 @@ module StagedRegExp with obj_240 = new Concat(obj_238, obj_239) obj_241 = new Concat(obj_212, obj_240) obj_242 = new Concat(obj_184, obj_241) - tmp117 = obj_242 - ipv4 = new Concat(tmp117, segment) + tmp122 = obj_242 + ipv4 = new Concat(tmp122, segment) matchAll_StagedRegExp_sp_2(ipv4, s) fun matchAllImpl(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} - tmp54 = len(s) - scrut22 = ==(tmp54, 0) + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) if scrut22 is true then res else @@ -2005,28 +2025,28 @@ module StagedRegExp with Some then arg_Some_0_ = scrut23.x ss = arg_Some_0_ - tmp55 = len(ss) - scrut24 = >(tmp55, 0) + tmp60 = len(ss) + scrut24 = >(tmp60, 0) if scrut24 is true then - tmp56 = len(ss) - tmp57 = s.slice(tmp56) - tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl(p, tmp57, tmp58) + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl(p, tmp62, tmp63) else - tmp59 = s.slice(1) - matchAllImpl(p, tmp59, res) + tmp64 = s.slice(1) + matchAllImpl(p, tmp64, res) else - tmp60 = s.slice(1) - matchAllImpl(p, tmp60, res) + tmp65 = s.slice(1) + matchAllImpl(p, tmp65, res) fun matchAllURI(s) = - let {n1, n2, n3, w, d, p8, head, body, params, uri, tmp71, tmp72, tmp73, tmp74, tmp75, tmp76, tmp77, tmp78, tmp79, tmp80, tmp81, tmp82, tmp83, tmp84, tmp85, tmp86, tmp87, tmp88, tmp89, tmp90, tmp91, tmp92, tmp93, tmp94, tmp95, tmp96, tup_19, obj_20, tup_21, obj_22, tup_23, tup_24, tup_25, tup_26, tup_27, obj_28, tup_29, obj_30, obj_31, obj_32, tup_33, obj_34, tup_35, obj_36, obj_37, obj_38, tup_39, obj_40, tup_41, obj_42, obj_43, obj_44, obj_45, tup_46, obj_47, obj_48, obj_49, obj_50, obj_51, obj_52, tup_53, obj_54, obj_55, obj_56, obj_57, obj_58} - tmp71 = ["/", "?", "#", " ", "\n", "\t", "\r"] - n1 = new Not(tmp71) - tmp72 = ["?", "#", " ", "\n", "\t", "\r"] - n2 = new Not(tmp72) - tmp73 = ["#", " ", "\n", "\t", "\r"] - n3 = new Not(tmp73) + let {n1, n2, n3, w, d, p8, head, body, params, uri, tmp76, tmp77, tmp78, tmp79, tmp80, tmp81, tmp82, tmp83, tmp84, tmp85, tmp86, tmp87, tmp88, tmp89, tmp90, tmp91, tmp92, tmp93, tmp94, tmp95, tmp96, tmp97, tmp98, tmp99, tmp100, tmp101, tup_19, obj_20, tup_21, obj_22, tup_23, tup_24, tup_25, tup_26, tup_27, obj_28, tup_29, obj_30, obj_31, obj_32, tup_33, obj_34, tup_35, obj_36, obj_37, obj_38, tup_39, obj_40, tup_41, obj_42, obj_43, obj_44, obj_45, tup_46, obj_47, obj_48, obj_49, obj_50, obj_51, obj_52, tup_53, obj_54, obj_55, obj_56, obj_57, obj_58} + tmp76 = ["/", "?", "#", " ", "\n", "\t", "\r"] + n1 = new Not(tmp76) + tmp77 = ["?", "#", " ", "\n", "\t", "\r"] + n2 = new Not(tmp77) + tmp78 = ["#", " ", "\n", "\t", "\r"] + n3 = new Not(tmp78) tup_19 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] obj_20 = new In(tup_19) w = obj_20 @@ -2034,12 +2054,12 @@ module StagedRegExp with obj_22 = new In(tup_21) d = obj_22 tup_23 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - tmp74 = tup_23 + tmp79 = tup_23 tup_24 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - tmp75 = tup_24 - tmp76 = ["-", "_"] + tmp80 = tup_24 + tmp81 = ["-", "_"] tup_25 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] - tmp77 = tup_25 + tmp82 = tup_25 tup_26 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] p8 = tup_26 tup_27 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] @@ -2048,32 +2068,32 @@ module StagedRegExp with obj_30 = new In(tup_29) obj_31 = new Star(obj_30) obj_32 = new Concat(obj_28, obj_31) - tmp78 = obj_32 - tmp79 = new Exact(":") - tmp80 = new Exact("/") - tmp81 = new Exact("/") - tmp82 = new Concat(tmp80, tmp81) - tmp83 = new Concat(tmp79, tmp82) - head = new Concat(tmp78, tmp83) + tmp83 = obj_32 + tmp84 = new Exact(":") + tmp85 = new Exact("/") + tmp86 = new Exact("/") + tmp87 = new Concat(tmp85, tmp86) + tmp88 = new Concat(tmp84, tmp87) + head = new Concat(tmp83, tmp88) tup_33 = ["/", "?", "#", " ", "\n", "\t", "\r"] obj_34 = new Not(tup_33) tup_35 = ["/", "?", "#", " ", "\n", "\t", "\r"] obj_36 = new Not(tup_35) obj_37 = new Star(obj_36) obj_38 = new Concat(obj_34, obj_37) - tmp84 = obj_38 + tmp89 = obj_38 tup_39 = ["?", "#", " ", "\n", "\t", "\r"] obj_40 = new Not(tup_39) tup_41 = ["?", "#", " ", "\n", "\t", "\r"] obj_42 = new Not(tup_41) obj_43 = new Star(obj_42) obj_44 = new Concat(obj_40, obj_43) - tmp85 = obj_44 - body = new Concat(tmp84, tmp85) - tmp86 = new Exact("?") - tmp87 = new In(p8) - tmp88 = new Star(tmp87) - tmp89 = new Concat(tmp86, tmp88) + tmp90 = obj_44 + body = new Concat(tmp89, tmp90) + tmp91 = new Exact("?") + tmp92 = new In(p8) + tmp93 = new Star(tmp92) + tmp94 = new Concat(tmp91, tmp93) obj_45 = new Exact("?") tup_46 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] obj_47 = new In(tup_46) @@ -2081,11 +2101,11 @@ module StagedRegExp with obj_49 = new Concat(obj_45, obj_48) obj_50 = new Empty() obj_51 = new Union(obj_49, obj_50) - tmp90 = obj_51 - tmp91 = new Exact("#") - tmp92 = new In(p8) - tmp93 = new Star(tmp92) - tmp94 = new Concat(tmp91, tmp93) + tmp95 = obj_51 + tmp96 = new Exact("#") + tmp97 = new In(p8) + tmp98 = new Star(tmp97) + tmp99 = new Concat(tmp96, tmp98) obj_52 = new Exact("#") tup_53 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] obj_54 = new In(tup_53) @@ -2093,15 +2113,15 @@ module StagedRegExp with obj_56 = new Concat(obj_52, obj_55) obj_57 = new Empty() obj_58 = new Union(obj_56, obj_57) - tmp95 = obj_58 - params = new Concat(tmp90, tmp95) - tmp96 = new Concat(body, params) - uri = new Concat(head, tmp96) + tmp100 = obj_58 + params = new Concat(tmp95, tmp100) + tmp101 = new Concat(body, params) + uri = new Concat(head, tmp101) matchAll_StagedRegExp_sp_1(uri, s) fun matchImpl(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} - tmp50 = len(s) - scrut18 = ==(tmp50, 0) + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) if scrut18 is true then scrut19 = p.canBeEmpty() @@ -2116,76 +2136,80 @@ module StagedRegExp with scrut20 = p.startsWith(c18) if scrut20 is true then - tmp51 = p.derive(c18) - tmp52 = s.slice(1) - tmp53 = acc + c18 - matchImpl(tmp51, tmp52, tmp53) + tmp56 = p.derive(c18) + tmp57 = s.slice(1) + tmp58 = acc + c18 + matchImpl(tmp56, tmp57, tmp58) else scrut21 = p.canBeEmpty() if scrut21 is true then new Some(acc) else new None() fun mkUnion(arr, i, s) = - let {scrut15, scrut16, tmp38, tmp39, tmp40, tmp41, tmp42} - tmp38 = s - i - tmp39 = s - 1 - scrut15 = ==(tmp38, tmp39) + let {scrut15, scrut16, tmp40, tmp41, tmp42, tmp43, tmp44, tmp45, tmp46, tmp47} + tmp40 = s - i + tmp41 = s - 1 + scrut15 = ==(tmp40, tmp41) if scrut15 is - true then arr.(i) + true then + tmp42 = s - i + arr.(tmp42) else - scrut16 = arr.(i) + tmp43 = s - i + scrut16 = arr.(tmp43) if scrut16 is Nothing then - tmp40 = i - 1 - mkUnion(arr, tmp40, s) + tmp44 = i - 1 + mkUnion(arr, tmp44, s) else - tmp41 = i - 1 - tmp42 = mkUnion(arr, tmp41, s) - new Union(arr.(i), tmp42) + tmp45 = s - i + tmp46 = i - 1 + tmp47 = mkUnion(arr, tmp46, s) + new Union(arr.(tmp45), tmp47) fun nTimes(r, i) = - let {scrut17, tmp47, tmp48} + let {scrut17, tmp52, tmp53} scrut17 = ==(i, 1) if scrut17 is true then r else - tmp47 = i - 1 - tmp48 = nTimes(r, tmp47) - new Concat(r, tmp48) + tmp52 = i - 1 + tmp53 = nTimes(r, tmp52) + new Concat(r, tmp53) fun notDigit() = - let {tmp37, tup_5} + let {tmp39, tup_5} tup_5 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - tmp37 = tup_5 - new Not(tmp37) + tmp39 = tup_5 + new Not(tmp39) fun notSpace() = - let {tmp36, tup_4} + let {tmp38, tup_4} tup_4 = [" ", "\n", "\t", "\r"] - tmp36 = tup_4 - new Not(tmp36) + tmp38 = tup_4 + new Not(tmp38) fun notWord() = - let {tmp35, tup_3} + let {tmp37, tup_3} tup_3 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - tmp35 = tup_3 - new Not(tmp35) + tmp37 = tup_3 + new Not(tmp37) fun plus(r) = - let {tmp49} - tmp49 = new Star(r) - new Concat(r, tmp49) + let {tmp54} + tmp54 = new Star(r) + new Concat(r, tmp54) fun push(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(arr, ele) fun question(r) = - let {tmp43} - tmp43 = new Empty() - new Union(r, tmp43) + let {tmp48} + tmp48 = new Empty() + new Union(r, tmp48) fun setEq(s1, s2) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".setEq(s1, s2) fun spaces() = - let {tmp45, tup_7} + let {tmp50, tup_7} tup_7 = [" ", "\n", "\t", "\r"] - tmp45 = tup_7 - new In(tmp45) + tmp50 = tup_7 + new In(tmp50) fun words() = - let {tmp44, tup_6} + let {tmp49, tup_6} tup_6 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - tmp44 = tup_6 - new In(tmp44) + tmp49 = tup_6 + new In(tmp49) private fun has_StagedRegExp_sp_0(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) private fun has_StagedRegExp_sp_1(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) private fun has_StagedRegExp_sp_2(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) @@ -2199,9 +2223,9 @@ module StagedRegExp with private fun len_StagedRegExp_sp_6(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) private fun len_StagedRegExp_sp_7(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) private fun matchAllImpl_StagedRegExp_sp_0(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} - tmp54 = len(s) - scrut22 = ==(tmp54, 0) + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) if scrut22 is true then res else @@ -2210,24 +2234,24 @@ module StagedRegExp with Some then arg_Some_0_ = scrut23.x ss = arg_Some_0_ - tmp55 = len(ss) - scrut24 = >(tmp55, 0) + tmp60 = len(ss) + scrut24 = >(tmp60, 0) if scrut24 is true then - tmp56 = len(ss) - tmp57 = s.slice(tmp56) - tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl(p, tmp57, tmp58) + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl(p, tmp62, tmp63) else - tmp59 = s.slice(1) - matchAllImpl_StagedRegExp_sp_0(p, tmp59, res) + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_0(p, tmp64, res) else - tmp60 = s.slice(1) - matchAllImpl_StagedRegExp_sp_0(p, tmp60, res) + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_0(p, tmp65, res) private fun matchAllImpl_StagedRegExp_sp_1(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} - tmp54 = len(s) - scrut22 = ==(tmp54, 0) + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) if scrut22 is true then res else @@ -2236,24 +2260,24 @@ module StagedRegExp with Some then arg_Some_0_ = scrut23.x ss = arg_Some_0_ - tmp55 = len(ss) - scrut24 = >(tmp55, 0) + tmp60 = len(ss) + scrut24 = >(tmp60, 0) if scrut24 is true then - tmp56 = len(ss) - tmp57 = s.slice(tmp56) - tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl_StagedRegExp_sp_2(p, tmp57, tmp58) + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_2(p, tmp62, tmp63) else - tmp59 = s.slice(1) - matchAllImpl_StagedRegExp_sp_1(p, tmp59, res) + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_1(p, tmp64, res) else - tmp60 = s.slice(1) - matchAllImpl_StagedRegExp_sp_1(p, tmp60, res) + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_1(p, tmp65, res) private fun matchAllImpl_StagedRegExp_sp_2(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} - tmp54 = len(s) - scrut22 = ==(tmp54, 0) + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) if scrut22 is true then res else @@ -2262,24 +2286,24 @@ module StagedRegExp with Some then arg_Some_0_ = scrut23.x ss = arg_Some_0_ - tmp55 = len(ss) - scrut24 = >(tmp55, 0) + tmp60 = len(ss) + scrut24 = >(tmp60, 0) if scrut24 is true then - tmp56 = len(ss) - tmp57 = s.slice(tmp56) - tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl_StagedRegExp_sp_2(p, tmp57, tmp58) + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_2(p, tmp62, tmp63) else - tmp59 = s.slice(1) - matchAllImpl_StagedRegExp_sp_2(p, tmp59, res) + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_2(p, tmp64, res) else - tmp60 = s.slice(1) - matchAllImpl_StagedRegExp_sp_2(p, tmp60, res) + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_2(p, tmp65, res) private fun matchAllImpl_StagedRegExp_sp_3(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} - tmp54 = len(s) - scrut22 = ==(tmp54, 0) + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) if scrut22 is true then res else @@ -2288,24 +2312,24 @@ module StagedRegExp with Some then arg_Some_0_ = scrut23.x ss = arg_Some_0_ - tmp55 = len(ss) - scrut24 = >(tmp55, 0) + tmp60 = len(ss) + scrut24 = >(tmp60, 0) if scrut24 is true then - tmp56 = len(ss) - tmp57 = s.slice(tmp56) - tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl_StagedRegExp_sp_4(p, tmp57, tmp58) + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_4(p, tmp62, tmp63) else - tmp59 = s.slice(1) - matchAllImpl_StagedRegExp_sp_3(p, tmp59, res) + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_3(p, tmp64, res) else - tmp60 = s.slice(1) - matchAllImpl_StagedRegExp_sp_3(p, tmp60, res) + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_3(p, tmp65, res) private fun matchAllImpl_StagedRegExp_sp_4(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} - tmp54 = len(s) - scrut22 = ==(tmp54, 0) + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) if scrut22 is true then res else @@ -2314,24 +2338,24 @@ module StagedRegExp with Some then arg_Some_0_ = scrut23.x ss = arg_Some_0_ - tmp55 = len(ss) - scrut24 = >(tmp55, 0) + tmp60 = len(ss) + scrut24 = >(tmp60, 0) if scrut24 is true then - tmp56 = len(ss) - tmp57 = s.slice(tmp56) - tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl_StagedRegExp_sp_4(p, tmp57, tmp58) + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_4(p, tmp62, tmp63) else - tmp59 = s.slice(1) - matchAllImpl_StagedRegExp_sp_4(p, tmp59, res) + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_4(p, tmp64, res) else - tmp60 = s.slice(1) - matchAllImpl_StagedRegExp_sp_4(p, tmp60, res) + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_4(p, tmp65, res) private fun matchAllImpl_StagedRegExp_sp_5(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} - tmp54 = len(s) - scrut22 = ==(tmp54, 0) + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) if scrut22 is true then res else @@ -2340,24 +2364,24 @@ module StagedRegExp with Some then arg_Some_0_ = scrut23.x ss = arg_Some_0_ - tmp55 = len(ss) - scrut24 = >(tmp55, 0) + tmp60 = len(ss) + scrut24 = >(tmp60, 0) if scrut24 is true then - tmp56 = len(ss) - tmp57 = s.slice(tmp56) - tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl_StagedRegExp_sp_6(p, tmp57, tmp58) + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_6(p, tmp62, tmp63) else - tmp59 = s.slice(1) - matchAllImpl_StagedRegExp_sp_5(p, tmp59, res) + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_5(p, tmp64, res) else - tmp60 = s.slice(1) - matchAllImpl_StagedRegExp_sp_5(p, tmp60, res) + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_5(p, tmp65, res) private fun matchAllImpl_StagedRegExp_sp_6(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp54, arg_Some_0_, tmp55, tmp56, tmp57, tmp58, tmp59, tmp60} - tmp54 = len(s) - scrut22 = ==(tmp54, 0) + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) if scrut22 is true then res else @@ -2366,36 +2390,36 @@ module StagedRegExp with Some then arg_Some_0_ = scrut23.x ss = arg_Some_0_ - tmp55 = len(ss) - scrut24 = >(tmp55, 0) + tmp60 = len(ss) + scrut24 = >(tmp60, 0) if scrut24 is true then - tmp56 = len(ss) - tmp57 = s.slice(tmp56) - tmp58 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl_StagedRegExp_sp_6(p, tmp57, tmp58) + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_6(p, tmp62, tmp63) else - tmp59 = s.slice(1) - matchAllImpl_StagedRegExp_sp_6(p, tmp59, res) + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_6(p, tmp64, res) else - tmp60 = s.slice(1) - matchAllImpl_StagedRegExp_sp_6(p, tmp60, res) + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_6(p, tmp65, res) private fun matchAll_StagedRegExp_sp_0(p, s) = - let {tmp61} - tmp61 = [] - matchAllImpl_StagedRegExp_sp_1(p, s, tmp61) + let {tmp66} + tmp66 = [] + matchAllImpl_StagedRegExp_sp_1(p, s, tmp66) private fun matchAll_StagedRegExp_sp_1(p, s) = - let {tmp61} - tmp61 = [] - matchAllImpl_StagedRegExp_sp_3(p, s, tmp61) + let {tmp66} + tmp66 = [] + matchAllImpl_StagedRegExp_sp_3(p, s, tmp66) private fun matchAll_StagedRegExp_sp_2(p, s) = - let {tmp61} - tmp61 = [] - matchAllImpl_StagedRegExp_sp_5(p, s, tmp61) + let {tmp66} + tmp66 = [] + matchAllImpl_StagedRegExp_sp_5(p, s, tmp66) private fun matchImpl_StagedRegExp_sp_0(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} - tmp50 = len(s) - scrut18 = ==(tmp50, 0) + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) if scrut18 is true then scrut19 = p.canBeEmpty() @@ -2410,19 +2434,19 @@ module StagedRegExp with scrut20 = p.startsWith(c18) if scrut20 is true then - tmp51 = p.derive(c18) - tmp52 = s.slice(1) - tmp53 = "" + c18 - matchImpl(tmp51, tmp52, tmp53) + tmp56 = p.derive(c18) + tmp57 = s.slice(1) + tmp58 = "" + c18 + matchImpl(tmp56, tmp57, tmp58) else scrut21 = p.canBeEmpty() if scrut21 is true then new Some(acc) else new None() private fun matchImpl_StagedRegExp_sp_1(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} - tmp50 = len(s) - scrut18 = ==(tmp50, 0) + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) if scrut18 is true then scrut19 = p.canBeEmpty_Concat_sp_0() @@ -2432,17 +2456,17 @@ module StagedRegExp with scrut20 = p.startsWith_Concat_sp_0(c18) if scrut20 is true then - tmp51 = p.derive_Concat_sp_0(c18) - tmp52 = s.slice(1) - tmp53 = "" + c18 - matchImpl_StagedRegExp_sp_2(tmp51, tmp52, tmp53) + tmp56 = p.derive_Concat_sp_0(c18) + tmp57 = s.slice(1) + tmp58 = "" + c18 + matchImpl_StagedRegExp_sp_2(tmp56, tmp57, tmp58) else scrut21 = p.canBeEmpty_Concat_sp_0() new None() private fun matchImpl_StagedRegExp_sp_2(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} - tmp50 = len(s) - scrut18 = ==(tmp50, 0) + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) if scrut18 is true then if p is @@ -2459,17 +2483,17 @@ module StagedRegExp with scrut20 = p.startsWith_Concat_sp_2(c18) if scrut20 is true then - tmp51 = p.derive_Concat_sp_2(c18) - tmp52 = s.slice(1) - tmp53 = acc + c18 - matchImpl(tmp51, tmp52, tmp53) + tmp56 = p.derive_Concat_sp_2(c18) + tmp57 = s.slice(1) + tmp58 = acc + c18 + matchImpl(tmp56, tmp57, tmp58) else scrut21 = p.canBeEmpty_Concat_sp_2() new None() private fun matchImpl_StagedRegExp_sp_3(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} - tmp50 = len(s) - scrut18 = ==(tmp50, 0) + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) if scrut18 is true then scrut19 = p.canBeEmpty_Concat_sp_4() @@ -2479,17 +2503,17 @@ module StagedRegExp with scrut20 = p.startsWith_Concat_sp_4(c18) if scrut20 is true then - tmp51 = p.derive_Concat_sp_4(c18) - tmp52 = s.slice(1) - tmp53 = "" + c18 - matchImpl_StagedRegExp_sp_4(tmp51, tmp52, tmp53) + tmp56 = p.derive_Concat_sp_4(c18) + tmp57 = s.slice(1) + tmp58 = "" + c18 + matchImpl_StagedRegExp_sp_4(tmp56, tmp57, tmp58) else scrut21 = p.canBeEmpty_Concat_sp_4() new None() private fun matchImpl_StagedRegExp_sp_4(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} - tmp50 = len(s) - scrut18 = ==(tmp50, 0) + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) if scrut18 is true then if p is @@ -2506,17 +2530,17 @@ module StagedRegExp with scrut20 = p.startsWith_Concat_sp_7(c18) if scrut20 is true then - tmp51 = p.derive_Concat_sp_7(c18) - tmp52 = s.slice(1) - tmp53 = acc + c18 - matchImpl_StagedRegExp_sp_5(tmp51, tmp52, tmp53) + tmp56 = p.derive_Concat_sp_7(c18) + tmp57 = s.slice(1) + tmp58 = acc + c18 + matchImpl_StagedRegExp_sp_5(tmp56, tmp57, tmp58) else scrut21 = p.canBeEmpty_Concat_sp_7() new None() private fun matchImpl_StagedRegExp_sp_5(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} - tmp50 = len(s) - scrut18 = ==(tmp50, 0) + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) if scrut18 is true then if p is @@ -2541,12 +2565,12 @@ module StagedRegExp with true then if p is Concat then - tmp51 = p.derive_Concat_sp_10(c18) + tmp56 = p.derive_Concat_sp_10(c18) Concat then - tmp51 = p.derive_Concat_sp_13(c18) - tmp52 = s.slice(1) - tmp53 = acc + c18 - matchImpl(tmp51, tmp52, tmp53) + tmp56 = p.derive_Concat_sp_13(c18) + tmp57 = s.slice(1) + tmp58 = acc + c18 + matchImpl(tmp56, tmp57, tmp58) else if p is Concat then @@ -2555,9 +2579,9 @@ module StagedRegExp with scrut21 = p.canBeEmpty_Concat_sp_13() new None() private fun matchImpl_StagedRegExp_sp_6(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} - tmp50 = len(s) - scrut18 = ==(tmp50, 0) + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) if scrut18 is true then scrut19 = p.canBeEmpty_Concat_sp_14() @@ -2567,17 +2591,17 @@ module StagedRegExp with scrut20 = p.startsWith_Concat_sp_14(c18) if scrut20 is true then - tmp51 = p.derive_Concat_sp_14(c18) - tmp52 = s.slice(1) - tmp53 = "" + c18 - matchImpl_StagedRegExp_sp_7(tmp51, tmp52, tmp53) + tmp56 = p.derive_Concat_sp_14(c18) + tmp57 = s.slice(1) + tmp58 = "" + c18 + matchImpl_StagedRegExp_sp_7(tmp56, tmp57, tmp58) else scrut21 = p.canBeEmpty_Concat_sp_14() new None() private fun matchImpl_StagedRegExp_sp_7(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} - tmp50 = len(s) - scrut18 = ==(tmp50, 0) + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) if scrut18 is true then if p is @@ -2596,17 +2620,17 @@ module StagedRegExp with scrut20 = p.startsWith_Concat_sp_21(c18) if scrut20 is true then - tmp51 = p.derive_Concat_sp_21(c18) - tmp52 = s.slice(1) - tmp53 = acc + c18 - matchImpl_StagedRegExp_sp_8(tmp51, tmp52, tmp53) + tmp56 = p.derive_Concat_sp_21(c18) + tmp57 = s.slice(1) + tmp58 = acc + c18 + matchImpl_StagedRegExp_sp_8(tmp56, tmp57, tmp58) else scrut21 = p.canBeEmpty_Concat_sp_21() new None() private fun matchImpl_StagedRegExp_sp_8(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp50, tmp51, tmp52, tmp53} - tmp50 = len(s) - scrut18 = ==(tmp50, 0) + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) if scrut18 is true then if p is @@ -2625,10 +2649,10 @@ module StagedRegExp with scrut20 = p.startsWith_Concat_sp_24(c18) if scrut20 is true then - tmp51 = p.derive_Concat_sp_24(c18) - tmp52 = s.slice(1) - tmp53 = acc + c18 - matchImpl(tmp51, tmp52, tmp53) + tmp56 = p.derive_Concat_sp_24(c18) + tmp57 = s.slice(1) + tmp58 = acc + c18 + matchImpl(tmp56, tmp57, tmp58) else scrut21 = p.canBeEmpty_Concat_sp_24() new None() @@ -2636,9 +2660,9 @@ module StagedRegExp with private fun match_StagedRegExp_sp_1(p, s) = matchImpl_StagedRegExp_sp_3(p, s, "") private fun match_StagedRegExp_sp_2(p, s) = matchImpl_StagedRegExp_sp_6(p, s, "") private fun nTimes_StagedRegExp_sp_0(r, i) = - let {scrut17, tmp47, tmp48, obj_100, obj_101, tup_102, obj_103, obj_104, obj_105, obj_106, tup_107, obj_108, tup_109, obj_110, obj_111, obj_112, obj_113, obj_114, obj_115, tup_116, obj_117, obj_118, obj_119, tup_120, obj_121, obj_122, obj_123, obj_124, obj_125, obj_126, obj_127, obj_128, obj_129, tup_130, obj_131, obj_132, obj_133, obj_134, tup_135, obj_136, tup_137, obj_138, obj_139, obj_140, obj_141, obj_142, obj_143, tup_144, obj_145, obj_146, obj_147, tup_148, obj_149, obj_150, obj_151, obj_152, obj_153, obj_154, obj_155, obj_156} + let {scrut17, tmp52, tmp53, obj_100, obj_101, tup_102, obj_103, obj_104, obj_105, obj_106, tup_107, obj_108, tup_109, obj_110, obj_111, obj_112, obj_113, obj_114, obj_115, tup_116, obj_117, obj_118, obj_119, tup_120, obj_121, obj_122, obj_123, obj_124, obj_125, obj_126, obj_127, obj_128, obj_129, tup_130, obj_131, obj_132, obj_133, obj_134, tup_135, obj_136, tup_137, obj_138, obj_139, obj_140, obj_141, obj_142, obj_143, tup_144, obj_145, obj_146, obj_147, tup_148, obj_149, obj_150, obj_151, obj_152, obj_153, obj_154, obj_155, obj_156} scrut17 = false - tmp47 = 2 + tmp52 = 2 obj_100 = new Exact("2") obj_101 = new Exact("5") tup_102 = ["0", "1", "2", "3", "4", "5"] @@ -2696,12 +2720,12 @@ module StagedRegExp with obj_154 = new Exact(".") obj_155 = new Concat(obj_153, obj_154) obj_156 = new Concat(obj_127, obj_155) - tmp48 = obj_156 - new Concat(r, tmp48) + tmp53 = obj_156 + new Concat(r, tmp53) private fun nTimes_StagedRegExp_sp_1(r, i) = - let {scrut17, tmp47, tmp48, obj_72, obj_73, tup_74, obj_75, obj_76, obj_77, obj_78, tup_79, obj_80, tup_81, obj_82, obj_83, obj_84, obj_85, obj_86, obj_87, tup_88, obj_89, obj_90, obj_91, tup_92, obj_93, obj_94, obj_95, obj_96, obj_97, obj_98, obj_99} + let {scrut17, tmp52, tmp53, obj_72, obj_73, tup_74, obj_75, obj_76, obj_77, obj_78, tup_79, obj_80, tup_81, obj_82, obj_83, obj_84, obj_85, obj_86, obj_87, tup_88, obj_89, obj_90, obj_91, tup_92, obj_93, obj_94, obj_95, obj_96, obj_97, obj_98, obj_99} scrut17 = false - tmp47 = 1 + tmp52 = 1 obj_72 = new Exact("2") obj_73 = new Exact("5") tup_74 = ["0", "1", "2", "3", "4", "5"] @@ -2730,41 +2754,41 @@ module StagedRegExp with obj_97 = new Union(obj_77, obj_96) obj_98 = new Exact(".") obj_99 = new Concat(obj_97, obj_98) - tmp48 = obj_99 - new Concat(r, tmp48) + tmp53 = obj_99 + new Concat(r, tmp53) private fun nTimes_StagedRegExp_sp_2(r, i) = - let {scrut17, tmp47, tmp48} + let {scrut17, tmp52, tmp53} scrut17 = true r private fun plus_StagedRegExp_sp_0(r) = - let {tmp49} - tmp49 = new Star(r) - new Concat(r, tmp49) + let {tmp54} + tmp54 = new Star(r) + new Concat(r, tmp54) private fun plus_StagedRegExp_sp_1(r) = - let {tmp49} - tmp49 = new Star(r) - new Concat(r, tmp49) + let {tmp54} + tmp54 = new Star(r) + new Concat(r, tmp54) private fun plus_StagedRegExp_sp_2(r) = - let {tmp49} - tmp49 = new Star(r) - new Concat(r, tmp49) + let {tmp54} + tmp54 = new Star(r) + new Concat(r, tmp54) private fun plus_StagedRegExp_sp_3(r) = - let {tmp49} - tmp49 = new Star(r) - new Concat(r, tmp49) + let {tmp54} + tmp54 = new Star(r) + new Concat(r, tmp54) private fun question_StagedRegExp_sp_0(r) = - let {tmp43} - tmp43 = new Empty() - new Union(r, tmp43) + let {tmp48} + tmp48 = new Empty() + new Union(r, tmp48) private fun question_StagedRegExp_sp_1(r) = - let {tmp43} - tmp43 = new Empty() - new Union(r, tmp43) + let {tmp48} + tmp48 = new Empty() + new Union(r, tmp48) private fun question_StagedRegExp_sp_2(r) = - let {tmp43} - tmp43 = new Empty() - new Union(r, tmp43) + let {tmp48} + tmp48 = new Empty() + new Union(r, tmp48) private fun question_StagedRegExp_sp_3(r) = - let {tmp43} - tmp43 = new Empty() - new Union(r, tmp43) \ No newline at end of file + let {tmp48} + tmp48 = new Empty() + new Union(r, tmp48) \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls b/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls index 4989f67c50..67b8cbf637 100644 --- a/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls +++ b/hkmc2/shared/src/test/mlscript/block-staging/StagedRegExpTest.mls @@ -45,47 +45,38 @@ match(Not(["x", "y", "z"]), "xyz") match(Not(["x", "y", "z"]), "w") //│ = Some("w") -:fixme this generation should be fixed in another branch match(Union(Union(Exact("x"), Exact("y")), Exact("z")), "z") -//│ ═══[RUNTIME ERROR] TypeError: this.p1.normalize is not a function +//│ = Some("z") -:fixme this generation should be fixed in another branch match(Union(Union(Exact("x"), Exact("y")), Exact("z")), "y") -//│ ═══[RUNTIME ERROR] TypeError: this.p1.normalize is not a function +//│ = Some("y") match(Union(Union(Exact("x"), Exact("y")), Exact("z")), "w") //│ = None -:fixme this generation should be fixed in another branch match(question(Exact("x")), "x") -//│ ═══[RUNTIME ERROR] TypeError: p.canBeEmpty is not a function +//│ = Some("x") match(question(Exact("x")), "y") //│ = Some("") -:fixme this generation should be fixed in another branch match(question(Exact("x")), "xx") -//│ ═══[RUNTIME ERROR] TypeError: p.startsWith is not a function +//│ = Some("x") -:fixme this generation should be fixed in another branch match(question(Any()), "y") -//│ ═══[RUNTIME ERROR] TypeError: p.canBeEmpty is not a function +//│ = Some("y") -:fixme this generation should be fixed in another branch match(Concat(Star(Exact("x")), Exact("y")), "x") -//│ ═══[RUNTIME ERROR] TypeError: p.canBeEmpty is not a function +//│ = None -:fixme this generation should be fixed in another branch match(Concat(Star(Exact("x")), Exact("y")), "y") -//│ ═══[RUNTIME ERROR] TypeError: p.canBeEmpty is not a function +//│ = Some("y") -:fixme this generation should be fixed in another branch match(Concat(Star(Exact("x")), Exact("y")), "xxxxxy") -//│ ═══[RUNTIME ERROR] TypeError: p.startsWith is not a function +//│ = Some("xxxxxy") -:fixme this generation should be fixed in another branch match(Concat(Star(Exact("x")), Exact("y")), "xyyyy") -//│ ═══[RUNTIME ERROR] TypeError: p.startsWith is not a function +//│ = Some("xy") match(plus(Exact("x")), "") @@ -118,7 +109,6 @@ match(nTimes(Exact("x"), 3), "xx") :silent let p = Concat(In(["T", "t"]), Concat(Star(words()), notWord())) -:fixme this generation should be fixed in another branch matchAll(p, "To be or not to be, that is the question.") -//│ ═══[RUNTIME ERROR] TypeError: p.startsWith is not a function +//│ = ["To ", "t ", "to ", "that ", "the ", "tion."] From 03d2c2cfb069fc8001033b544f8e0dc19b901ec8 Mon Sep 17 00:00:00 2001 From: NeilKleistGao Date: Thu, 4 Jun 2026 14:59:14 +0800 Subject: [PATCH 8/9] Re-implement codegen at top level --- .../src/test/mlscript-compile/Block.mls | 158 +- .../mlscript-compile/SpecializeHelpers.mls | 14 +- .../staging/out/CombinedModule.mls | 34 +- .../staging/out/LinkingGeneratedClasses.mls | 7 +- .../staging/out/SimpleStagedExample.mls | 27 +- .../staging/out/StagedClass.mls | 11 +- .../staging/out/StagedRegExp.mls | 4995 +++++------ .../staging/out/Transform3D.mls | 7665 +++++++++-------- .../test/mlscript/block-staging/Hygiene.mls | 2 +- .../test/mlscript/block-staging/ShapeProp.mls | 182 +- .../mlscript/block-staging/SpecializeTest.mls | 2 +- 11 files changed, 6624 insertions(+), 6473 deletions(-) diff --git a/hkmc2/shared/src/test/mlscript-compile/Block.mls b/hkmc2/shared/src/test/mlscript-compile/Block.mls index 7d72c1c7d0..23d7d46294 100644 --- a/hkmc2/shared/src/test/mlscript-compile/Block.mls +++ b/hkmc2/shared/src/test/mlscript-compile/Block.mls @@ -162,6 +162,9 @@ class Printer(val owner: Opt[Symbol]) with ConcreteClassSymbol(_, value, _, _, _) then isStagedClass(value) else false + fun showGeneratedStagedClassCache(cache): Str = + cache.printDefinitions() + fun showSymbol(s: Symbol) = if s.redirect and owner is Some(owner) and owner is @@ -250,6 +253,61 @@ class Printer(val owner: Opt[Symbol]) with fun showParamList(ps: Array[ParamList]) = ps.map(showParams(_)).join("") + fun collectSymbolName(names: Set[String], sym: Symbol) = + if not sym is NoSymbol do names.add(showSymbol(sym)) + + fun collectParamNames(names: Set[String], ps: Array[ParamList]) = + let printer = this + ps.forEach(pl => pl.forEach(p => printer.collectSymbolName(names, p.sym))) + + fun collectDefnSymbolNames(names: Set[String], d: Defn) = + let printer = this + if d is + FunDefn(_, ps, body) then + printer.collectParamNames(names, ps) + printer.collectBlockSymbolNames(names, body) + ClsLikeDefn(sym, methods, _) then + printer.collectSymbolName(names, sym) + methods.forEach(m => printer.collectDefnSymbolNames(names, m)) + ValDefn(_, sym, _) then printer.collectSymbolName(names, sym) + + fun collectBlockSymbolNames(names: Set[String], b: Block) = + let printer = this + if b is + Assign(lhs, _, rest) then + printer.collectSymbolName(names, lhs) + printer.collectBlockSymbolNames(names, rest) + Define(d, rest) then + printer.collectDefnSymbolNames(names, d) + printer.collectBlockSymbolNames(names, rest) + Match(_, arms, dflt, rest) then + arms.forEach(a => printer.collectBlockSymbolNames(names, a.body)) + if dflt is Some(db) do printer.collectBlockSymbolNames(names, db) + printer.collectBlockSymbolNames(names, rest) + Scoped(symbols, rest) then + symbols.forEach(s => printer.collectSymbolName(names, s)) + printer.collectBlockSymbolNames(names, rest) + Return | End then () + + fun freshSelfSymbol(ps: Array[ParamList], body: Block) = + let names = new Set() + collectParamNames(names, ps) + collectBlockSymbolNames(names, body) + let + base = "self" + idx = 0 + name = base + while names.has(name) do + set + idx += 1 + name = base + idx + Symbol(name) + + fun prependParam(ps: Array[ParamList], p: Param) = + if ps is + [] then [[p]] + [first, ...rest] then [[p, ...first], ...rest] + fun showFunDefn(prefix: Str, sym: Symbol, ps: Array[ParamList], body: Block): Str = prefix + "fun " + showDefnSymbol(sym) + showParamList(ps) + " =" + (if body is Return | End then " " else "\n ") + indent(showBlock(body)) @@ -259,7 +317,7 @@ class Printer(val owner: Opt[Symbol]) with FunDefn(sym, ps, body) then showFunDefn("", sym, ps, body) ClsLikeDefn(sym, methods, _) and sym is ConcreteClassSymbol(_, v, _, _, _) and - isGeneratedStagedClass(sym) then getClassCache(v) + isGeneratedStagedClass(sym) then getClassCache(v).printDefinitions() else "class " + showDefnSymbol(sym) + showParamsOpt(sym.paramsOpt) + sym.auxParams.map(showParams(_)).join("") + indent((if methods is [] then "" else " with\n") + methods.map(showDefn(_)).join("\n")) @@ -270,9 +328,35 @@ class Printer(val owner: Opt[Symbol]) with fun showPrivateDefn(d: Defn): Str = if d is - FunDefn(sym, ps, body) then showFunDefn("private ", sym, ps, body) + FunDefn(sym, ps, body) then showFunDefn("", sym, ps, body) else showDefn(d) + fun showPrivateMethodDefn(d: Defn): Str = + if d is + FunDefn(sym, ps, body) then + let selfSym = freshSelfSymbol(ps, body) + let psWithSelf = prependParam(ps, Param(None, selfSym)) + // substitute `this` with `self` + class SelfPrinter(val selfSym: Symbol) extends Printer(owner) with + fun showPath(p: Path): Str = + if p is + Select(qual, name) and + qual is + // avoids needing to import the runtime module + ValueMemberRef(Symbol("runtime")) and name is ModuleSymbol("Unit", Runtime.Unit, _) then "()" + ValueThis(ConcreteClassSymbol) then this.showSymbol(selfSym) + "." + this.showSymbol(name) + ValueThis then this.showSymbol(name) + ValueMemberRef(sym) and owner is Some(owner) and sym === owner and owner is ConcreteClassSymbol then this.showSymbol(selfSym) + "." + this.showSymbol(name) + ValueMemberRef(sym) and owner is Some(owner) and sym === owner then this.showSymbol(name) + else showPath(qual) + "." + this.showSymbol(name) + DynSelect(qual, fld, false) then showPath(qual) + ".(" + showPath(fld) + ")" + DynSelect(qual, fld, true) then showPath(qual) + ".[" + showPath(fld) + "]" + ValueSimpleRef(l) | ValueMemberRef(l) then this.showSymbol(l) + ValueLit(lit) then this.showLiteral(lit) + ValueThis(ConcreteClassSymbol) then this.showSymbol(selfSym) + SelfPrinter(selfSym).showFunDefn("", sym, psWithSelf, body) + else showPrivateDefn(d) + fun showBlock(b) = if b is Assign(lhs, rhs, rest) then @@ -326,9 +410,45 @@ let configs = fun mkImport(source, name) = "import \"" + source + "\" as " + legacyName(name) +fun printPrivateMember(cache) = + let printer = Printer(Some(cache.owner)) + cache.cache.values().map(e => + if e.isPrivate then + if cache.owner is ConcreteClassSymbol then printer.showPrivateMethodDefn(e.defn) + else printer.showPrivateDefn(e.defn) + else "" + ).toArray().filter(_ != "").sort().join("\n") + +fun collectClassInModule(block) = + if block is + Define(ClsLikeDefn(sym, _, _), rest) and sym is ConcreteClassSymbol(_, value, _, _, _) and isStagedClass(value) then + [printCachedPrivateCode(getClassCache(value)), collectClassInModule(rest)].filter(_ != "").join("\n") + Define(_, rest) then collectClassInModule(rest) + else "" + +fun checkCtor(cache) = + if cache.owner is ModuleSymbol then + let runtimeClass = cache.owner.value + let ctor = runtimeClass."ctor$_instr"() + assert ctor is FunDefn + collectClassInModule(ctor.body) + else "" + +// collect and print private functions & methods in the given cache +fun printCachedPrivateCode(cache) = + [printPrivateMember(cache), checkCtor(cache)].filter(_ != "").join("\n") + +fun printPrivateCodeIn(name, cache, usedStagedClasses) = + let usedCaches = usedStagedClasses.map(getClassCache(_)) + let privateText = [...usedCaches.map(printCachedPrivateCode), printCachedPrivateCode(cache)].filter(_ != "").join("\n") + if privateText == "" then "" else "open " + name + "\n" + privateText + fun toCode(name, cache, usedStagedClasses) = - let prefix = usedStagedClasses.map(getClassCache(_).toString() + "\n") - prefix + indent(cache.toString()) + let usedCaches = usedStagedClasses.map(getClassCache(_)) + let prefix = usedCaches.map(_.printDefinitions() + "\n").join("") + let publicText = prefix + indent(cache.printDefinitions()) + let privateText = printPrivateCodeIn(name, cache, usedStagedClasses) + publicText + if privateText == "" then "" else "\n" + privateText fun codegen(name, cache, source, file, usedStagedClasses) = let fullpath = path.join of process.cwd(), file @@ -346,12 +466,34 @@ fun generateAll(name, file, ...modules) = if not fs.existsSync(fullpath) do fs.mkdirSync(path.dirname(fullpath), recursive: true) fs.writeFileSync(fullpath, "", "utf8") + fun splitCodeText(text) = + if text.split("\nopen ") is + [publicText] then [publicText, "", ""] + [publicText, ...privatePieces] then + let privateText = "open " + privatePieces.join("\nopen ") + let privateLines = privateText.split("\n") + [ + publicText, + privateLines.filter(_.startsWith("open ")).join("\n"), + privateLines.filter(l => not l.startsWith("open ")).join("\n"), + ] let code = fold((res, p) => if p is - [mod, name, source] then + [mod, modName, source] then mod.propagate() - [res.0 + mkImport(source, name) + "\n", res.1 + mod.toCode() + "\n"] - )(["", ""], ...modules) + let parts = splitCodeText(mod.toCode()) + [ + res.0 + mkImport(source, modName) + "\n", + res.1 + parts.0 + "\n", + res.2 + parts.1 + "\n", + res.3 + parts.2 + "\n", + ] + )(["", "", "", ""], ...modules) let originData = fs.readFileSync(fullpath, "utf8") - let newData = configs + code.0 + "\n" + "module " + name + " with" + indent("\n" + code.1) + let publicText = code.1.trim() + let openText = code.2.trim() + let privateText = code.3.trim() + let opens = ["open " + name, openText].filter(_ != "").join("\n") + let privateSuffix = if privateText == "" then "" else "\n" + opens + "\n" + privateText + let newData = configs + code.0 + "\n" + "module " + name + " with" + indent("\n" + publicText) + privateSuffix if newData != originData do fs.writeFileSync(fullpath, newData, "utf8") diff --git a/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls b/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls index 6914b0227a..f57f5e291b 100644 --- a/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls +++ b/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls @@ -116,8 +116,7 @@ class FunCache( idx += 1 name = prefix + idx reserveName(name) - fun toString() = - let p = printer // FIXME: figure out why we need this p + fun printDefinitions() = let decl = if owner is ConcreteClassSymbol then "class " ModuleSymbol then "module " @@ -125,6 +124,7 @@ class FunCache( ConcreteClassSymbol(_, _, Some, _, _) then owner.value.class else owner.value + let p = printer let paramText = if owner is ConcreteClassSymbol and owner.paramsOpt is Some(ps) then printer.showCtorParams(ps) + owner.auxParams.map(pl => p.showParams(pl)).join("") @@ -180,14 +180,16 @@ class FunCache( let params = new Set(ctor.params.flat().map(_.sym)) let ctorBody = removeExtraValDefn(params, ctor.body) let methodDefns = cache.values().map(e => - if e.isPrivate then printer.showPrivateDefn(e.defn) else printer.showDefn(e.defn) - ).toArray().sort().join("\n") + if not e.isPrivate then printer.showDefn(e.defn) else "" + ).toArray().filter(_ != "").sort().join("\n") decl + owner.name + paramText + if extendsClause == "" then "" else (" extends " + extendsClause) + if cache.length == 0 then "" else " with" + indent("\n" + printer.showBlock(ctorBody)) // TODO: we can skip printing ctor that are just End() + (if methodDefns == "" then "" else indent("\n" + methodDefns)) + fun toString() = + [printDefinitions(), printCachedPrivateCode(this)].filter(_ != "").join("\n") module FunCache with fun empty(owner) = FunCache(owner, new Map(), new Set()) @@ -432,7 +434,7 @@ fun dispatchMethodCall(ctx, xOpt, p, f, args) = let ret = f_gen(ss_i)(...argShapes) let retSym = ret.0 let retShape = ret.1 - let callRes = Call(Select(p, Symbol(retSym)), args) + let callRes = Call(ValueSimpleRef(Symbol(retSym)), [Arg(p), ...args]) isRet then [Return(callRes), retShape] else @@ -447,7 +449,7 @@ fun dispatchMethodCall(ctx, xOpt, p, f, args) = let retData = f_gen(ss_i)(...argShapes) let retSym = retData.0 let retShape = retData.1 - let callRes = Call(Select(p, Symbol(retSym)), args) + let callRes = Call(ValueSimpleRef(Symbol(retSym)), [Arg(p), ...args]) if isRet then [Arm(Cls(C_i, p), Return(callRes)), retShape] else diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls index 1794fd89ea..a60020a6f5 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls @@ -7,7 +7,6 @@ module CombinedModule with class Bar(val x) with () fun bar() = x - private fun bar_Bar_sp_0() = 1 class Foo(val x) with () fun foo(b) = @@ -20,7 +19,6 @@ module CombinedModule with tmp1 = x.bar() tmp1 + 2 else x.bar() - private fun foo_Foo_sp_0(b) = 2 fun baz() = 2 fun bazbaz(x) = not x fun f(x, y) = x + y @@ -49,20 +47,8 @@ module CombinedModule with z = 0 y1 + 0 fun spaces() = ["\t", "\n", "\r"] - private fun f_SimpleStagedExample_sp_0(x, y) = 5 - private fun fib_SimpleStagedExample_sp_0(n) = 55 - private fun fib_SimpleStagedExample_sp_1(n) = 34 - private fun fib_SimpleStagedExample_sp_2(n) = 21 - private fun fib_SimpleStagedExample_sp_3(n) = 13 - private fun fib_SimpleStagedExample_sp_4(n) = 8 - private fun fib_SimpleStagedExample_sp_5(n) = 5 - private fun fib_SimpleStagedExample_sp_6(n) = 3 - private fun fib_SimpleStagedExample_sp_7(n) = 2 - private fun fib_SimpleStagedExample_sp_8(n) = 1 - private fun fib_SimpleStagedExample_sp_9(n) = 1 class S with () - private fun f_S_sp_0(x) = 1 module LinkingGeneratedClasses with class D fun f() = @@ -82,10 +68,26 @@ module CombinedModule with if x is true then tmp = new S() - tmp.f_S_sp_0(1) + f_S_sp_0(tmp, 1) else new S() fun test3 = let {obj_2} obj_2 = new D() obj_2 - \ No newline at end of file +open CombinedModule +open SimpleStagedExample +open LinkingGeneratedClasses +fun f_SimpleStagedExample_sp_0(x, y) = 5 +fun fib_SimpleStagedExample_sp_0(n) = 55 +fun fib_SimpleStagedExample_sp_1(n) = 34 +fun fib_SimpleStagedExample_sp_2(n) = 21 +fun fib_SimpleStagedExample_sp_3(n) = 13 +fun fib_SimpleStagedExample_sp_4(n) = 8 +fun fib_SimpleStagedExample_sp_5(n) = 5 +fun fib_SimpleStagedExample_sp_6(n) = 3 +fun fib_SimpleStagedExample_sp_7(n) = 2 +fun fib_SimpleStagedExample_sp_8(n) = 1 +fun fib_SimpleStagedExample_sp_9(n) = 1 +fun bar_Bar_sp_0(self) = 1 +fun foo_Foo_sp_0(self, b) = 2 +fun f_S_sp_0(self, x) = 1 \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls index 686b3204cf..c318975d60 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls @@ -2,7 +2,6 @@ import "../LinkingGeneratedClasses.mls" as LinkingGeneratedClasses__Legacy class S with () - private fun f_S_sp_0(x) = 1 module LinkingGeneratedClasses with class D fun f() = @@ -22,9 +21,11 @@ module LinkingGeneratedClasses with if x is true then tmp = new S() - tmp.f_S_sp_0(1) + f_S_sp_0(tmp, 1) else new S() fun test3 = let {obj_2} obj_2 = new D() - obj_2 \ No newline at end of file + obj_2 +open LinkingGeneratedClasses +fun f_S_sp_0(self, x) = 1 \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/SimpleStagedExample.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/SimpleStagedExample.mls index a3e45544ce..4bfce5b631 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/SimpleStagedExample.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/SimpleStagedExample.mls @@ -4,7 +4,6 @@ module SimpleStagedExample with class Bar(val x) with () fun bar() = x - private fun bar_Bar_sp_0() = 1 class Foo(val x) with () fun foo(b) = @@ -17,7 +16,6 @@ module SimpleStagedExample with tmp1 = x.bar() tmp1 + 2 else x.bar() - private fun foo_Foo_sp_0(b) = 2 fun baz() = 2 fun bazbaz(x) = not x fun f(x, y) = x + y @@ -46,14 +44,17 @@ module SimpleStagedExample with z = 0 y1 + 0 fun spaces() = ["\t", "\n", "\r"] - private fun f_SimpleStagedExample_sp_0(x, y) = 5 - private fun fib_SimpleStagedExample_sp_0(n) = 55 - private fun fib_SimpleStagedExample_sp_1(n) = 34 - private fun fib_SimpleStagedExample_sp_2(n) = 21 - private fun fib_SimpleStagedExample_sp_3(n) = 13 - private fun fib_SimpleStagedExample_sp_4(n) = 8 - private fun fib_SimpleStagedExample_sp_5(n) = 5 - private fun fib_SimpleStagedExample_sp_6(n) = 3 - private fun fib_SimpleStagedExample_sp_7(n) = 2 - private fun fib_SimpleStagedExample_sp_8(n) = 1 - private fun fib_SimpleStagedExample_sp_9(n) = 1 \ No newline at end of file +open SimpleStagedExample +fun f_SimpleStagedExample_sp_0(x, y) = 5 +fun fib_SimpleStagedExample_sp_0(n) = 55 +fun fib_SimpleStagedExample_sp_1(n) = 34 +fun fib_SimpleStagedExample_sp_2(n) = 21 +fun fib_SimpleStagedExample_sp_3(n) = 13 +fun fib_SimpleStagedExample_sp_4(n) = 8 +fun fib_SimpleStagedExample_sp_5(n) = 5 +fun fib_SimpleStagedExample_sp_6(n) = 3 +fun fib_SimpleStagedExample_sp_7(n) = 2 +fun fib_SimpleStagedExample_sp_8(n) = 1 +fun fib_SimpleStagedExample_sp_9(n) = 1 +fun bar_Bar_sp_0(self) = 1 +fun foo_Foo_sp_0(self, b) = 2 \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls index 58e20dd89d..23c2eaf498 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls @@ -37,10 +37,6 @@ module StagedClass with let {tmp2} tmp2 = x + y helpFoo(tmp2) - private fun f_X_sp_0(y) = - let {scrut} - scrut = true - new Bar(x) fun bar(b) = if b is true then Bar(0) @@ -74,4 +70,9 @@ module StagedClass with fun xx() = let {tmp3} tmp3 = new X(0) - tmp3.f_X_sp_0(1) \ No newline at end of file + f_X_sp_0(tmp3, 1) +open StagedClass +fun f_X_sp_0(self, y) = + let {scrut} + scrut = true + new Bar(self.x) \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls index 0da7df6fd8..bf0495b2ea 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls @@ -39,17 +39,6 @@ module StagedRegExp with else false fun normalize() = this fun startsWith(c) = false - private fun canBeEmpty_Nothing_sp_0() = false - private fun derive_Nothing_sp_0(c) = - let {obj_244} - obj_244 = new Nothing() - obj_244 - private fun normalize_Nothing_sp_0() = - let {obj_18} - obj_18 = new Nothing() - obj_18 - private fun normalize_Nothing_sp_1() = this - private fun startsWith_Nothing_sp_0(c) = false class Empty() extends RegExp() with () fun canBeEmpty() = true @@ -63,16 +52,6 @@ module StagedRegExp with else false fun normalize() = this fun startsWith(c) = false - private fun canBeEmpty_Empty_sp_0() = true - private fun derive_Empty_sp_0(c) = - let {obj_243} - obj_243 = new Nothing() - obj_243 - private fun normalize_Empty_sp_0() = - let {obj_17} - obj_17 = new Empty() - obj_17 - private fun startsWith_Empty_sp_0(c) = false class Exact(val ch) extends RegExp() with () fun canBeEmpty() = false @@ -92,55 +71,6 @@ module StagedRegExp with else false fun normalize() = this fun startsWith(c) = ==(ch, c) - private fun canBeEmpty_Exact_sp_0() = false - private fun canBeEmpty_Exact_sp_1() = false - private fun canBeEmpty_Exact_sp_2() = false - private fun canBeEmpty_Exact_sp_3() = false - private fun canBeEmpty_Exact_sp_4() = false - private fun derive_Exact_sp_0(c) = - let {scrut2} - scrut2 = startsWith(c) - if scrut2 is - true then new Empty() - else new Nothing() - private fun derive_Exact_sp_1(c) = - let {scrut2} - scrut2 = startsWith(c) - if scrut2 is - true then new Empty() - else new Nothing() - private fun derive_Exact_sp_2(c) = - let {scrut2} - scrut2 = startsWith(c) - if scrut2 is - true then new Empty() - else new Nothing() - private fun derive_Exact_sp_3(c) = - let {scrut2} - scrut2 = startsWith(c) - if scrut2 is - true then new Empty() - else new Nothing() - private fun derive_Exact_sp_4(c) = - let {scrut2} - scrut2 = startsWith(c) - if scrut2 is - true then new Empty() - else new Nothing() - private fun normalize_Exact_sp_0() = this - private fun normalize_Exact_sp_1() = this - private fun normalize_Exact_sp_2() = this - private fun normalize_Exact_sp_3() = this - private fun normalize_Exact_sp_4() = this - private fun normalize_Exact_sp_5() = this - private fun normalize_Exact_sp_6() = this - private fun normalize_Exact_sp_7() = this - private fun normalize_Exact_sp_8() = this - private fun startsWith_Exact_sp_0(c) = ==("@", c) - private fun startsWith_Exact_sp_1(c) = ==(":", c) - private fun startsWith_Exact_sp_2(c) = ==("2", c) - private fun startsWith_Exact_sp_3(c) = ==("1", c) - private fun startsWith_Exact_sp_4(c) = ==(".", c) class Any() extends RegExp() with () fun canBeEmpty() = false @@ -176,19 +106,6 @@ module StagedRegExp with let {tmp5} tmp5 = has(chars, c) not tmp5 - private fun canBeEmpty_Not_sp_0() = false - private fun derive_Not_sp_0(c) = - let {scrut3} - scrut3 = startsWith(c) - if scrut3 is - true then new Empty() - else new Nothing() - private fun normalize_Not_sp_0() = this - private fun normalize_Not_sp_1() = this - private fun startsWith_Not_sp_0(c) = - let {tmp5} - tmp5 = has_StagedRegExp_sp_2(chars, c) - not tmp5 class Union(val p1, val p2) extends RegExp() with () fun canBeEmpty() = @@ -202,7 +119,7 @@ module StagedRegExp with tmp6 = p1.derive(c) tmp7 = p2.derive(c) tmp8 = new Union.class(tmp6, tmp7) - tmp8.normalize_Union_sp_0() + normalize_Union_sp_0(tmp8) fun eq(other) = let {n, tmp23, tmp24, tmp25} n = other.normalize() @@ -210,7 +127,7 @@ module StagedRegExp with Union then tmp23 = normalize() tmp24 = tmp23.flat() - tmp25 = n.flat_Union_sp_0() + tmp25 = flat_Union_sp_0(n) setEq(tmp24, tmp25) else false fun flat() = @@ -247,13 +164,13 @@ module StagedRegExp with p2__1 = p2.normalize() if p1__1 is Union then - tmp16 = p1__1.flat_Union_sp_0() + tmp16 = flat_Union_sp_0(p1__1) else tmp16 = [p1__1] arr11 = tmp16 if p2__1 is Union then - tmp17 = p2__1.flat_Union_sp_0() + tmp17 = flat_Union_sp_0(p2__1) else tmp17 = [p2__1] arr2 = tmp17 @@ -270,516 +187,73 @@ module StagedRegExp with if tmp26 is false then p2.startsWith(c) else true - private fun canBeEmpty_Union_sp_0() = false - private fun canBeEmpty_Union_sp_1() = false - private fun canBeEmpty_Union_sp_2() = true - private fun canBeEmpty_Union_sp_3() = true - private fun derive_Union_sp_0(c) = - let {tmp6, tmp7, tmp8} - tmp6 = p1.derive_Concat_sp_17(c) - tmp7 = p2.derive_Union_sp_1(c) - tmp8 = new Union.class(tmp6, tmp7) - tmp8.normalize_Union_sp_12() - private fun derive_Union_sp_1(c) = - let {tmp6, tmp7, tmp8} - tmp6 = p1.derive_Concat_sp_18(c) - tmp7 = p2.derive_Concat_sp_19(c) - tmp8 = new Union.class(tmp6, tmp7) - tmp8.normalize_Union_sp_11() - private fun derive_Union_sp_2(c) = - let {tmp6, tmp7, tmp8} - tmp6 = p1.derive_Exact_sp_3(c) - tmp7 = p2.derive_Empty_sp_0(c) - tmp8 = new Union.class(tmp6, tmp7) - tmp8.normalize_Union_sp_7() - private fun derive_Union_sp_3(c) = - let {tmp6, tmp7, tmp8} - tmp6 = p1.derive_In_sp_2(c) - tmp7 = p2.derive_Empty_sp_0(c) - tmp8 = new Union.class(tmp6, tmp7) - tmp8.normalize_Union_sp_7() - private fun flat_Union_sp_0() = - let {p1__, scrut4, p2__, scrut5, tmp10, tmp11} - scrut4 = p1 - if scrut4 is - Union then - tmp10 = p1.flat() - else - tmp10 = [p1] - p1__ = tmp10 - scrut5 = p2 - if scrut5 is - Union then - tmp11 = p2.flat() - else - tmp11 = [p2] - p2__ = tmp11 - concat(p1__, p2__) - private fun normalize_Union_sp_0() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize() - p2__1 = p2.normalize() - if p1__1 is - Union then - tmp16 = p1__1.flat_Union_sp_0() - else - tmp16 = [p1__1] - arr11 = tmp16 - if p2__1 is - Union then - tmp17 = p2__1.flat_Union_sp_0() - else - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = len(arr2) - tmp20 = len(arr2) - s2 = iter(tmp18, arr2, tmp19, tmp20) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_1() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_Concat_sp_0() - p2__1 = p2.normalize() - if p1__1 is - Union then - tmp16 = p1__1.flat_Union_sp_0() - else - tmp16 = [p1__1] - arr11 = tmp16 - if p2__1 is - Union then - tmp17 = p2__1.flat_Union_sp_0() - else - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = len(arr2) - tmp20 = len(arr2) - s2 = iter(tmp18, arr2, tmp19, tmp20) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_10() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_In_sp_5() - p2__1 = p2.normalize_Empty_sp_0() - tmp16 = [p1__1] - arr11 = tmp16 - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = 1 - tmp20 = 1 - s2 = iter(tmp18, arr2, 1, 1) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_11() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - if p1 is - Concat then - p1__1 = p1.normalize_Concat_sp_33() - Nothing then - p1__1 = p1.normalize_Nothing_sp_0() - p2__1 = p2.normalize() - tmp16 = [p1__1] - arr11 = tmp16 - if p2__1 is - Union then - tmp17 = p2__1.flat_Union_sp_0() + class In(val chars) extends RegExp() with + () + fun canBeEmpty() = false + fun derive(c) = + let {scrut7} + scrut7 = startsWith(c) + if scrut7 is + true then new Empty() + else new Nothing() + fun eq(other) = + let {chars__1, arg_In_0_} + if other is + In then + arg_In_0_ = other.chars + chars__1 = arg_In_0_ + arrEq(chars, chars__1) + else false + fun normalize() = this + fun startsWith(c) = has(chars, c) + class Concat(val p1, val p2) extends RegExp() with + () + fun canBeEmpty() = + let {scrut9, scrut10} + scrut9 = p1.canBeEmpty() + if scrut9 is + true then + scrut10 = p2.canBeEmpty() + if scrut10 is + true then true + else false + else false + fun derive(c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = p1.derive(c) + scrut8 = p1.canBeEmpty() + if scrut8 is + true then + tmp27 = new Concat.class(p1__2, p2) + tmp28 = p2.derive(c) + tmp29 = new Union(tmp27, tmp28) + normalize_Union_sp_1(tmp29) else - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = len(arr2) - tmp20 = len(arr2) - s2 = iter(tmp18, arr2, tmp19, tmp20) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_12() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - if p1 is + tmp30 = new Concat.class(p1__2, p2) + normalize_Concat_sp_0(tmp30) + fun eq(other) = + let {p2__2, p1__4, scrut11, scrut12, arg_Concat_0_, arg_Concat_1_} + if other is Concat then - p1__1 = p1.normalize_Concat_sp_31() - Nothing then - p1__1 = p1.normalize_Nothing_sp_0() - p2__1 = p2.normalize() - tmp16 = [p1__1] - arr11 = tmp16 - if p2__1 is - Union then - tmp17 = p2__1.flat_Union_sp_0() - else - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = len(arr2) - tmp20 = len(arr2) - s2 = iter(tmp18, arr2, tmp19, tmp20) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_13() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_Concat_sp_41() - p2__1 = p2.normalize_Union_sp_14() - tmp16 = [p1__1] - arr11 = tmp16 - if p2__1 is - Union then - tmp17 = p2__1.flat_Union_sp_0() - else - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = len(arr2) - tmp20 = len(arr2) - s2 = iter(tmp18, arr2, tmp19, tmp20) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_14() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_Concat_sp_42() - p2__1 = p2.normalize_Concat_sp_43() - tmp16 = [p1__1] - arr11 = tmp16 - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = len_StagedRegExp_sp_6(arr2) - tmp20 = len_StagedRegExp_sp_6(arr2) - s2 = iter(tmp18, arr2, tmp19, tmp20) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_15() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_Exact_sp_8() - p2__1 = p2.normalize_Empty_sp_0() - tmp16 = [p1__1] - arr11 = tmp16 - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = 1 - tmp20 = 1 - s2 = iter(tmp18, arr2, 1, 1) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_16() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_Concat_sp_37() - if p2 is - Empty then - p2__1 = p2.normalize_Empty_sp_0() - Nothing then - p2__1 = p2.normalize_Nothing_sp_0() - tmp16 = [p1__1] - arr11 = tmp16 - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = len_StagedRegExp_sp_5(arr2) - tmp20 = len_StagedRegExp_sp_5(arr2) - s2 = iter(tmp18, arr2, tmp19, tmp20) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_17() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_Concat_sp_47() - if p2 is - Nothing then - p2__1 = p2.normalize_Nothing_sp_0() - Exact then - p2__1 = p2.normalize_Exact_sp_1() - Nothing then - p2__1 = p2.normalize_Nothing_sp_1() - Concat then - p2__1 = p2.normalize_Concat_sp_37() - Concat then - p2__1 = p2.normalize_Concat_sp_50() - tmp16 = [p1__1] - arr11 = tmp16 - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = len_StagedRegExp_sp_7(arr2) - tmp20 = len_StagedRegExp_sp_7(arr2) - s2 = iter(tmp18, arr2, tmp19, tmp20) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_2() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_Concat_sp_3() - if p2 is - Concat then - p2__1 = p2.normalize_Concat_sp_5() - Nothing then - p2__1 = p2.normalize_Nothing_sp_0() - tmp16 = [p1__1] - arr11 = tmp16 - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = len_StagedRegExp_sp_0(arr2) - tmp20 = len_StagedRegExp_sp_0(arr2) - s2 = iter(tmp18, arr2, tmp19, tmp20) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_3() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_Concat_sp_20() - p2__1 = p2.normalize_Empty_sp_0() - tmp16 = [p1__1] - arr11 = tmp16 - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = 1 - tmp20 = 1 - s2 = iter(tmp18, arr2, 1, 1) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_4() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_Concat_sp_21() - p2__1 = p2.normalize_Empty_sp_0() - tmp16 = [p1__1] - arr11 = tmp16 - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = 1 - tmp20 = 1 - s2 = iter(tmp18, arr2, 1, 1) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_5() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_Concat_sp_10() - if p2 is - Concat then - p2__1 = p2.normalize_Concat_sp_12() - Nothing then - p2__1 = p2.normalize_Nothing_sp_0() - tmp16 = [p1__1] - arr11 = tmp16 - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = len_StagedRegExp_sp_2(arr2) - tmp20 = len_StagedRegExp_sp_2(arr2) - s2 = iter(tmp18, arr2, tmp19, tmp20) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_6() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_Concat_sp_23() - if p2 is - Nothing then - p2__1 = p2.normalize_Nothing_sp_0() - Concat then - p2__1 = p2.normalize_Concat_sp_29() - tmp16 = [p1__1] - arr11 = tmp16 - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = len_StagedRegExp_sp_3(arr2) - tmp20 = len_StagedRegExp_sp_3(arr2) - s2 = iter(tmp18, arr2, tmp19, tmp20) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_7() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - if p1 is - Empty then - p1__1 = p1.normalize_Empty_sp_0() - Nothing then - p1__1 = p1.normalize_Nothing_sp_0() - p2__1 = p2.normalize_Nothing_sp_0() - tmp16 = [p1__1] - arr11 = tmp16 - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = 1 - tmp20 = 1 - s2 = iter(tmp18, arr2, 1, 1) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_8() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_Concat_sp_34() - if p2 is - Empty then - p2__1 = p2.normalize_Empty_sp_0() - Nothing then - p2__1 = p2.normalize_Nothing_sp_0() - tmp16 = [p1__1] - arr11 = tmp16 - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = len_StagedRegExp_sp_5(arr2) - tmp20 = len_StagedRegExp_sp_5(arr2) - s2 = iter(tmp18, arr2, tmp19, tmp20) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun normalize_Union_sp_9() = - let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = p1.normalize_Concat_sp_35() - p2__1 = p2.normalize() - tmp16 = [p1__1] - arr11 = tmp16 - if p2__1 is - Union then - tmp17 = p2__1.flat_Union_sp_0() - else - tmp17 = [p2__1] - arr2 = tmp17 - tmp18 = new DedupSet(arr11) - tmp19 = len(arr2) - tmp20 = len(arr2) - s2 = iter(tmp18, arr2, tmp19, tmp20) - tmp21 = len(s2.arr) - tmp22 = len(s2.arr) - mkUnion(s2.arr, tmp21, tmp22) - private fun startsWith_Union_sp_0(c) = - let {tmp26} - tmp26 = p1.startsWith_Concat_sp_17(c) - if tmp26 is - false then p2.startsWith_Union_sp_1(c) - else true - private fun startsWith_Union_sp_1(c) = - let {tmp26} - tmp26 = p1.startsWith_Concat_sp_18(c) - if tmp26 is - false then p2.startsWith_Concat_sp_19(c) - else true - private fun startsWith_Union_sp_2(c) = - let {tmp26} - tmp26 = p1.startsWith_Exact_sp_3(c) - if tmp26 is - false then p2.startsWith_Empty_sp_0(c) - else true - private fun startsWith_Union_sp_3(c) = - let {tmp26} - tmp26 = p1.startsWith_In_sp_2(c) - if tmp26 is - false then p2.startsWith_Empty_sp_0(c) - else true - class In(val chars) extends RegExp() with - () - fun canBeEmpty() = false - fun derive(c) = - let {scrut7} - scrut7 = startsWith(c) - if scrut7 is - true then new Empty() - else new Nothing() - fun eq(other) = - let {chars__1, arg_In_0_} - if other is - In then - arg_In_0_ = other.chars - chars__1 = arg_In_0_ - arrEq(chars, chars__1) - else false - fun normalize() = this - fun startsWith(c) = has(chars, c) - private fun canBeEmpty_In_sp_0() = false - private fun canBeEmpty_In_sp_1() = false - private fun canBeEmpty_In_sp_2() = false - private fun derive_In_sp_0(c) = - let {scrut7} - scrut7 = startsWith(c) - if scrut7 is - true then new Empty() - else new Nothing() - private fun derive_In_sp_1(c) = - let {scrut7} - scrut7 = startsWith(c) - if scrut7 is - true then new Empty() - else new Nothing() - private fun derive_In_sp_2(c) = - let {scrut7} - scrut7 = startsWith(c) - if scrut7 is - true then new Empty() - else new Nothing() - private fun normalize_In_sp_0() = this - private fun normalize_In_sp_1() = this - private fun normalize_In_sp_2() = this - private fun normalize_In_sp_3() = this - private fun normalize_In_sp_4() = this - private fun normalize_In_sp_5() = this - private fun startsWith_In_sp_0(c) = has_StagedRegExp_sp_0(chars, c) - private fun startsWith_In_sp_1(c) = has_StagedRegExp_sp_1(chars, c) - private fun startsWith_In_sp_2(c) = has_StagedRegExp_sp_3(chars, c) - class Concat(val p1, val p2) extends RegExp() with - () - fun canBeEmpty() = - let {scrut9, scrut10} - scrut9 = p1.canBeEmpty() - if scrut9 is - true then - scrut10 = p2.canBeEmpty() - if scrut10 is - true then true - else false - else false - fun derive(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive(c) - scrut8 = p1.canBeEmpty() - if scrut8 is - true then - tmp27 = new Concat.class(p1__2, p2) - tmp28 = p2.derive(c) - tmp29 = new Union(tmp27, tmp28) - tmp29.normalize_Union_sp_1() - else - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_0() - fun eq(other) = - let {p2__2, p1__4, scrut11, scrut12, arg_Concat_0_, arg_Concat_1_} - if other is - Concat then - arg_Concat_0_ = other.p1 - arg_Concat_1_ = other.p2 - p2__2 = arg_Concat_1_ - p1__4 = arg_Concat_0_ - scrut11 = p1.eq(p1__4) - if scrut11 is - true then - scrut12 = p2.eq(p2__2) - if scrut12 is - true then true - else false - else false - else false - fun normalize() = - let {p1__3, tmp31} - p1__3 = p1.normalize() - if p1__3 is - Empty then p2.normalize() - Nothing then p1__3 + arg_Concat_0_ = other.p1 + arg_Concat_1_ = other.p2 + p2__2 = arg_Concat_1_ + p1__4 = arg_Concat_0_ + scrut11 = p1.eq(p1__4) + if scrut11 is + true then + scrut12 = p2.eq(p2__2) + if scrut12 is + true then true + else false + else false + else false + fun normalize() = + let {p1__3, tmp31} + p1__3 = p1.normalize() + if p1__3 is + Empty then p2.normalize() + Nothing then p1__3 else tmp31 = p2.normalize() new Concat.class(p1__3, tmp31) @@ -797,1432 +271,192 @@ module StagedRegExp with else false else false else true - private fun canBeEmpty_Concat_sp_0() = false - private fun canBeEmpty_Concat_sp_1() = false - private fun canBeEmpty_Concat_sp_10() = false - private fun canBeEmpty_Concat_sp_11() = false - private fun canBeEmpty_Concat_sp_12() = false - private fun canBeEmpty_Concat_sp_13() = false - private fun canBeEmpty_Concat_sp_14() = false - private fun canBeEmpty_Concat_sp_15() = false - private fun canBeEmpty_Concat_sp_16() = false - private fun canBeEmpty_Concat_sp_17() = false - private fun canBeEmpty_Concat_sp_18() = false - private fun canBeEmpty_Concat_sp_19() = false - private fun canBeEmpty_Concat_sp_2() = false - private fun canBeEmpty_Concat_sp_20() = false - private fun canBeEmpty_Concat_sp_21() = false - private fun canBeEmpty_Concat_sp_22() = false - private fun canBeEmpty_Concat_sp_23() = false - private fun canBeEmpty_Concat_sp_24() = false - private fun canBeEmpty_Concat_sp_25() = false - private fun canBeEmpty_Concat_sp_26() = false - private fun canBeEmpty_Concat_sp_3() = false - private fun canBeEmpty_Concat_sp_4() = false - private fun canBeEmpty_Concat_sp_5() = false - private fun canBeEmpty_Concat_sp_6() = false - private fun canBeEmpty_Concat_sp_7() = false - private fun canBeEmpty_Concat_sp_8() = false - private fun canBeEmpty_Concat_sp_9() = false - private fun derive_Concat_sp_0(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Concat_sp_1(c) - scrut8 = p1.canBeEmpty_Concat_sp_1() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_3() - private fun derive_Concat_sp_1(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_In_sp_0(c) - scrut8 = p1.canBeEmpty_In_sp_0() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_2() - private fun derive_Concat_sp_10(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Concat_sp_11(c) - scrut8 = p1.canBeEmpty_Concat_sp_11() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_27() - private fun derive_Concat_sp_11(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Concat_sp_12(c) - scrut8 = p1.canBeEmpty_Concat_sp_12() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_26() - private fun derive_Concat_sp_12(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Not_sp_0(c) - scrut8 = p1.canBeEmpty_Not_sp_0() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_25() - private fun derive_Concat_sp_13(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive(c) - scrut8 = p1.canBeEmpty() - if scrut8 is - true then - tmp27 = new Concat.class(p1__2, p2) - tmp28 = p2.derive_Concat_sp_10(c) - tmp29 = new Union(tmp27, tmp28) - tmp29.normalize_Union_sp_6() - else - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_23() - private fun derive_Concat_sp_14(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Concat_sp_15(c) - scrut8 = p1.canBeEmpty_Concat_sp_15() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_44() - private fun derive_Concat_sp_15(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Concat_sp_16(c) - scrut8 = p1.canBeEmpty_Concat_sp_16() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_38() - private fun derive_Concat_sp_16(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Union_sp_0(c) - scrut8 = p1.canBeEmpty_Union_sp_0() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_37() - private fun derive_Concat_sp_17(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Exact_sp_2(c) - scrut8 = p1.canBeEmpty_Exact_sp_2() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_30() - private fun derive_Concat_sp_18(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Exact_sp_2(c) - scrut8 = p1.canBeEmpty_Exact_sp_2() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_32() - private fun derive_Concat_sp_19(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Union_sp_2(c) - scrut8 = p1.canBeEmpty_Union_sp_2() - tmp27 = new Concat.class(p1__2, p2) - tmp28 = p2.derive_Concat_sp_20(c) - tmp29 = new Union(tmp27, tmp28) - tmp29.normalize_Union_sp_9() - private fun derive_Concat_sp_2(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Star_sp_0(c) - scrut8 = p1.canBeEmpty_Star_sp_0() - tmp27 = new Concat.class(p1__2, p2) - tmp28 = p2.derive_Concat_sp_3(c) - tmp29 = new Union(tmp27, tmp28) - tmp29.normalize_Union_sp_2() - private fun derive_Concat_sp_20(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Union_sp_3(c) - scrut8 = p1.canBeEmpty_Union_sp_3() - tmp27 = new Concat.class(p1__2, p2) - tmp28 = p2.derive_In_sp_2(c) - tmp29 = new Union(tmp27, tmp28) - tmp29.normalize_Union_sp_8() - private fun derive_Concat_sp_21(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Concat_sp_22(c) - scrut8 = p1.canBeEmpty_Concat_sp_22() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_49() - private fun derive_Concat_sp_22(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - if p1 is - Exact then - p1__2 = p1.derive_Exact_sp_4(c) - Concat then - p1__2 = p1.derive_Concat_sp_23(c) - if p1 is - Exact then - scrut8 = p1.canBeEmpty_Exact_sp_4() - Concat then - scrut8 = p1.canBeEmpty_Concat_sp_23() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_47() - private fun derive_Concat_sp_23(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive(c) - scrut8 = p1.canBeEmpty() - if scrut8 is - true then - tmp27 = new Concat.class(p1__2, p2) - tmp28 = p2.derive_Exact_sp_4(c) - tmp29 = new Union(tmp27, tmp28) - tmp29.normalize_Union_sp_16() - else - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_37() - private fun derive_Concat_sp_24(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - if p1 is - Concat then - p1__2 = p1.derive_Concat_sp_25(c) - Concat then - p1__2 = p1.derive_Concat_sp_26(c) - if p1 is - Concat then - scrut8 = p1.canBeEmpty_Concat_sp_25() - Concat then - scrut8 = p1.canBeEmpty_Concat_sp_26() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_0() - private fun derive_Concat_sp_25(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - if p1 is - Exact then - p1__2 = p1.derive_Exact_sp_4(c) - Concat then - p1__2 = p1.derive_Concat_sp_23(c) - if p1 is - Exact then - scrut8 = p1.canBeEmpty_Exact_sp_4() - Concat then - scrut8 = p1.canBeEmpty_Concat_sp_23() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_50() - private fun derive_Concat_sp_26(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive(c) - scrut8 = p1.canBeEmpty() - if scrut8 is - true then - tmp27 = new Concat.class(p1__2, p2) - if p2 is - Nothing then - tmp28 = p2.derive_Nothing_sp_0(c) - Nothing then - tmp28 = p2.derive_Nothing_sp_0(c) - Concat then - tmp28 = p2.derive_Concat_sp_25(c) - tmp29 = new Union(tmp27, tmp28) - tmp29.normalize_Union_sp_17() - else - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_47() - private fun derive_Concat_sp_3(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Exact_sp_0(c) - scrut8 = p1.canBeEmpty_Exact_sp_0() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_8() - private fun derive_Concat_sp_4(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Concat_sp_5(c) - scrut8 = p1.canBeEmpty_Concat_sp_5() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_13() - private fun derive_Concat_sp_5(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Concat_sp_6(c) - scrut8 = p1.canBeEmpty_Concat_sp_6() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_10() - private fun derive_Concat_sp_6(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_In_sp_1(c) - scrut8 = p1.canBeEmpty_In_sp_1() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_9() - private fun derive_Concat_sp_7(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Concat_sp_8(c) - scrut8 = p1.canBeEmpty_Concat_sp_8() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_23() - private fun derive_Concat_sp_8(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Star_sp_1(c) - scrut8 = p1.canBeEmpty_Star_sp_1() - tmp27 = new Concat.class(p1__2, p2) - tmp28 = p2.derive_Concat_sp_9(c) - tmp29 = new Union(tmp27, tmp28) - tmp29.normalize_Union_sp_5() - private fun derive_Concat_sp_9(c) = - let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = p1.derive_Exact_sp_1(c) - scrut8 = p1.canBeEmpty_Exact_sp_1() - tmp30 = new Concat.class(p1__2, p2) - tmp30.normalize_Concat_sp_22() - private fun normalize_Concat_sp_0() = - let {p1__3, tmp31} - p1__3 = p1.normalize() - if p1__3 is - Empty then p2.normalize() - Nothing then p1__3 - else - tmp31 = p2.normalize() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_1() = - let {p1__3, tmp31} - p1__3 = p1.normalize() - if p1__3 is - Empty then p2.normalize_Star_sp_0() - Nothing then p1__3 - else - tmp31 = p2.normalize_Star_sp_0() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_10() = - let {p1__3, tmp31} - if p1 is + class Star(val p) extends RegExp() with + () + fun canBeEmpty() = true + fun derive(c) = + let {tmp33, tmp34, tmp35} + tmp33 = p.derive(c) + tmp34 = new Star.class(p) + tmp35 = new Concat(tmp33, tmp34) + normalize_Concat_sp_1(tmp35) + fun eq(other) = + let {p__, arg_Star_0_} + if other is Star then - p1__3 = p1.normalize_Star_sp_2() - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - if p1__3 is - Nothing then p1__3 - else - tmp31 = p2.normalize_Concat_sp_11() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_11() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Exact_sp_2() - tmp31 = p2.normalize_Concat_sp_12() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_12() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Exact_sp_3() - tmp31 = p2.normalize_Exact_sp_3() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_13() = - let {p1__3, tmp31} - if p1 is - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - Concat then - p1__3 = p1.normalize_Concat_sp_14() - if p1__3 is - Nothing then p1__3 - else - tmp31 = p2.normalize_Concat_sp_15() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_14() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Star_sp_2() - tmp31 = p2.normalize_Concat_sp_11() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_15() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Concat_sp_16() - tmp31 = p2.normalize_Concat_sp_19() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_16() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Concat_sp_17() - tmp31 = p2.normalize_Concat_sp_18() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_17() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Not_sp_0() - tmp31 = p2.normalize_Star_sp_3() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_18() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Not_sp_1() - tmp31 = p2.normalize_Star_sp_4() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_19() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Union_sp_3() - if p1__3 is - Empty then p2.normalize_Union_sp_4() - Nothing then p1__3 - else - tmp31 = p2.normalize_Union_sp_4() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_2() = - let {p1__3, tmp31} - if p1 is - Empty then - p1__3 = p1.normalize_Empty_sp_0() - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - if p1__3 is - Empty then p2.normalize_Star_sp_1() - Nothing then p1__3 - private fun normalize_Concat_sp_20() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Exact_sp_4() - tmp31 = p2.normalize_Star_sp_5() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_21() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Exact_sp_5() - tmp31 = p2.normalize_Star_sp_5() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_22() = - let {p1__3, tmp31} - if p1 is - Empty then - p1__3 = p1.normalize_Empty_sp_0() - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - if p1__3 is - Empty then p2.normalize_Concat_sp_12() - Nothing then p1__3 - private fun normalize_Concat_sp_23() = - let {p1__3, tmp31} - p1__3 = p1.normalize() - if p1__3 is - Empty then p2.normalize_Concat_sp_24() - Nothing then p1__3 - else - tmp31 = p2.normalize_Concat_sp_24() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_24() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Concat_sp_16() - tmp31 = p2.normalize() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_25() = - let {p1__3, tmp31} - if p1 is - Empty then - p1__3 = p1.normalize_Empty_sp_0() - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - if p1__3 is - Empty then p2.normalize_Star_sp_3() - Nothing then p1__3 - private fun normalize_Concat_sp_26() = - let {p1__3, tmp31} - if p1 is - Star then - p1__3 = p1.normalize_Star_sp_3() - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - if p1__3 is - Nothing then p1__3 - else - tmp31 = p2.normalize_Concat_sp_18() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_27() = - let {p1__3, tmp31} - if p1 is - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - Concat then - p1__3 = p1.normalize_Concat_sp_28() - if p1__3 is - Nothing then p1__3 - else - tmp31 = p2.normalize() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_28() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Star_sp_3() - tmp31 = p2.normalize_Concat_sp_18() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_29() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Concat_sp_28() - tmp31 = p2.normalize() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_3() = - let {p1__3, tmp31} - if p1 is - Star then - p1__3 = p1.normalize_Star_sp_1() - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - if p1__3 is - Nothing then p1__3 - else - tmp31 = p2.normalize_Concat_sp_4() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_30() = - let {p1__3, tmp31} - if p1 is - Empty then - p1__3 = p1.normalize_Empty_sp_0() - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - if p1__3 is - Empty then p2.normalize_Concat_sp_31() - Nothing then p1__3 - private fun normalize_Concat_sp_31() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Exact_sp_6() - tmp31 = p2.normalize_In_sp_3() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_32() = - let {p1__3, tmp31} - if p1 is - Empty then - p1__3 = p1.normalize_Empty_sp_0() - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - if p1__3 is - Empty then p2.normalize_Concat_sp_33() - Nothing then p1__3 - private fun normalize_Concat_sp_33() = - let {p1__3, tmp31} - p1__3 = p1.normalize_In_sp_4() - tmp31 = p2.normalize_In_sp_5() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_34() = - let {p1__3, tmp31} - p1__3 = p1.normalize() - if p1__3 is - Empty then p2.normalize_In_sp_5() - Nothing then p1__3 - else - tmp31 = p2.normalize_In_sp_5() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_35() = - let {p1__3, tmp31} - p1__3 = p1.normalize() - if p1__3 is - Empty then p2.normalize_Concat_sp_36() - Nothing then p1__3 - else - tmp31 = p2.normalize_Concat_sp_36() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_36() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Union_sp_10() - if p1__3 is - Empty then p2.normalize_In_sp_5() - Nothing then p1__3 - else - tmp31 = p2.normalize_In_sp_5() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_37() = - let {p1__3, tmp31} - p1__3 = p1.normalize() - if p1__3 is - Empty then p2.normalize_Exact_sp_1() - Nothing then p1__3 - else - tmp31 = p2.normalize_Exact_sp_1() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_38() = - let {p1__3, tmp31} - if p1 is - Exact then - p1__3 = p1.normalize_Exact_sp_1() - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - Concat then - p1__3 = p1.normalize_Concat_sp_37() - if p1__3 is - Nothing then p1__3 - else - tmp31 = p2.normalize_Concat_sp_39() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_39() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Concat_sp_40() - if p1__3 is - Nothing then p1__3 - else - tmp31 = p2.normalize_Concat_sp_40() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_4() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Exact_sp_0() - tmp31 = p2.normalize_Concat_sp_5() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_40() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Union_sp_13() - if p1__3 is - Empty then p2.normalize_Exact_sp_1() - Nothing then p1__3 - else - tmp31 = p2.normalize_Exact_sp_1() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_41() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Exact_sp_7() - tmp31 = p2.normalize_Concat_sp_31() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_42() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Exact_sp_7() - tmp31 = p2.normalize_Concat_sp_33() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_43() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Union_sp_15() - if p1__3 is - Empty then p2.normalize_Concat_sp_36() - Nothing then p1__3 - else - tmp31 = p2.normalize_Concat_sp_36() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_44() = - let {p1__3, tmp31} - if p1 is - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - Concat then - p1__3 = p1.normalize_Concat_sp_45() - if p1__3 is - Nothing then p1__3 - else - tmp31 = p2.normalize_Union_sp_13() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_45() = - let {p1__3, tmp31} - if p1 is - Exact then - p1__3 = p1.normalize_Exact_sp_1() - Concat then - p1__3 = p1.normalize_Concat_sp_37() - if p1__3 is - Nothing then p1__3 - else - if p2 is - Nothing then - tmp31 = p2.normalize_Nothing_sp_0() - Concat then - tmp31 = p2.normalize_Concat_sp_46() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_46() = - let {p1__3, tmp31} - if p1 is - Exact then - p1__3 = p1.normalize_Exact_sp_1() - Concat then - p1__3 = p1.normalize_Concat_sp_37() - if p1__3 is - Nothing then p1__3 - else - if p2 is - Exact then - tmp31 = p2.normalize_Exact_sp_1() - Nothing then - tmp31 = p2.normalize_Nothing_sp_0() - Concat then - tmp31 = p2.normalize_Concat_sp_37() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_47() = - let {p1__3, tmp31} - p1__3 = p1.normalize() - if p1__3 is - Empty then - if p2 is - Nothing then p2.normalize_Nothing_sp_0() - Nothing then p2.normalize_Nothing_sp_0() - Concat then p2.normalize_Concat_sp_48() - Nothing then p1__3 - else - if p2 is - Nothing then - tmp31 = p2.normalize_Nothing_sp_0() - Nothing then - tmp31 = p2.normalize_Nothing_sp_0() - Concat then - tmp31 = p2.normalize_Concat_sp_48() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_48() = - let {p1__3, tmp31} - if p1 is - Exact then - p1__3 = p1.normalize_Exact_sp_1() - Concat then - p1__3 = p1.normalize_Concat_sp_37() - if p1__3 is - Nothing then p1__3 - else - if p2 is - Exact then - tmp31 = p2.normalize_Exact_sp_1() - Nothing then - tmp31 = p2.normalize_Nothing_sp_0() - Nothing then - tmp31 = p2.normalize_Nothing_sp_0() - Concat then - tmp31 = p2.normalize_Concat_sp_37() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_49() = - let {p1__3, tmp31} - if p1 is - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - Concat then - p1__3 = p1.normalize_Concat_sp_48() - Concat then - p1__3 = p1.normalize_Concat_sp_47() - if p1__3 is - Nothing then p1__3 - else - tmp31 = p2.normalize() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_5() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Concat_sp_6() - tmp31 = p2.normalize_Concat_sp_7() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_50() = - let {p1__3, tmp31} - p1__3 = p1.normalize() - if p1__3 is - Empty then - if p2 is - Exact then p2.normalize_Exact_sp_1() - Nothing then p2.normalize_Nothing_sp_0() - Nothing then p2.normalize_Nothing_sp_0() - Concat then p2.normalize_Concat_sp_37() - Nothing then p1__3 - else - if p2 is - Exact then - tmp31 = p2.normalize_Exact_sp_1() - Nothing then - tmp31 = p2.normalize_Nothing_sp_0() - Nothing then - tmp31 = p2.normalize_Nothing_sp_0() - Concat then - tmp31 = p2.normalize_Concat_sp_37() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_6() = - let {p1__3, tmp31} - p1__3 = p1.normalize_In_sp_0() - tmp31 = p2.normalize_Star_sp_1() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_7() = - let {p1__3, tmp31} - p1__3 = p1.normalize_Exact_sp_1() - tmp31 = p2.normalize_Concat_sp_6() - new Concat.class(p1__3, tmp31) - private fun normalize_Concat_sp_8() = - let {p1__3, tmp31} - if p1 is - Empty then - p1__3 = p1.normalize_Empty_sp_0() - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - if p1__3 is - Empty then p2.normalize_Concat_sp_5() - Nothing then p1__3 - private fun normalize_Concat_sp_9() = - let {p1__3, tmp31} - if p1 is - Empty then - p1__3 = p1.normalize_Empty_sp_0() - Nothing then - p1__3 = p1.normalize_Nothing_sp_0() - if p1__3 is - Empty then p2.normalize_Star_sp_2() - Nothing then p1__3 - private fun startsWith_Concat_sp_0(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Concat_sp_1(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Concat_sp_1() - false - else true - private fun startsWith_Concat_sp_1(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_In_sp_0(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_In_sp_0() - false - else true - private fun startsWith_Concat_sp_10(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Concat_sp_11(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Concat_sp_11() - false - else true - private fun startsWith_Concat_sp_11(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Concat_sp_12(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Concat_sp_12() - false - else true - private fun startsWith_Concat_sp_12(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Not_sp_0(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Not_sp_0() - false - else true - private fun startsWith_Concat_sp_13(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty() - if scrut13 is - true then - scrut14 = p2.startsWith_Concat_sp_10(c) - if scrut14 is - true then true - else false - else false - else true - private fun startsWith_Concat_sp_14(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Concat_sp_15(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Concat_sp_15() - false - else true - private fun startsWith_Concat_sp_15(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Concat_sp_16(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Concat_sp_16() - false - else true - private fun startsWith_Concat_sp_16(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Union_sp_0(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Union_sp_0() - false - else true - private fun startsWith_Concat_sp_17(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Exact_sp_2(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Exact_sp_2() - false - else true - private fun startsWith_Concat_sp_18(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Exact_sp_2(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Exact_sp_2() - false - else true - private fun startsWith_Concat_sp_19(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Union_sp_2(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Union_sp_2() - scrut14 = p2.startsWith_Concat_sp_20(c) - if scrut14 is - true then true - else false - else true - private fun startsWith_Concat_sp_2(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Star_sp_0(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Star_sp_0() - scrut14 = p2.startsWith_Concat_sp_3(c) - if scrut14 is - true then true - else false - else true - private fun startsWith_Concat_sp_20(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Union_sp_3(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Union_sp_3() - scrut14 = p2.startsWith_In_sp_2(c) - if scrut14 is - true then true - else false - else true - private fun startsWith_Concat_sp_21(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Concat_sp_22(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Concat_sp_22() - false - else true - private fun startsWith_Concat_sp_22(c) = - let {scrut13, scrut14, tmp32} - if p1 is - Exact then - tmp32 = p1.startsWith_Exact_sp_4(c) - Concat then - tmp32 = p1.startsWith_Concat_sp_23(c) - if tmp32 is - false then - if p1 is - Exact then - scrut13 = p1.canBeEmpty_Exact_sp_4() - Concat then - scrut13 = p1.canBeEmpty_Concat_sp_23() - false - else true - private fun startsWith_Concat_sp_23(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty() - if scrut13 is - true then - scrut14 = p2.startsWith_Exact_sp_4(c) - if scrut14 is - true then true - else false - else false - else true - private fun startsWith_Concat_sp_24(c) = - let {scrut13, scrut14, tmp32} - if p1 is - Concat then - tmp32 = p1.startsWith_Concat_sp_25(c) - Concat then - tmp32 = p1.startsWith_Concat_sp_26(c) - if tmp32 is - false then - if p1 is - Concat then - scrut13 = p1.canBeEmpty_Concat_sp_25() - Concat then - scrut13 = p1.canBeEmpty_Concat_sp_26() - false - else true - private fun startsWith_Concat_sp_25(c) = - let {scrut13, scrut14, tmp32} - if p1 is - Exact then - tmp32 = p1.startsWith_Exact_sp_4(c) - Concat then - tmp32 = p1.startsWith_Concat_sp_23(c) - if tmp32 is - false then - if p1 is - Exact then - scrut13 = p1.canBeEmpty_Exact_sp_4() - Concat then - scrut13 = p1.canBeEmpty_Concat_sp_23() - false - else true - private fun startsWith_Concat_sp_26(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty() - if scrut13 is - true then - if p2 is - Nothing then - scrut14 = p2.startsWith_Nothing_sp_0(c) - Nothing then - scrut14 = p2.startsWith_Nothing_sp_0(c) - Concat then - scrut14 = p2.startsWith_Concat_sp_25(c) - if scrut14 is - true then true - else false - else false - else true - private fun startsWith_Concat_sp_3(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Exact_sp_0(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Exact_sp_0() - false - else true - private fun startsWith_Concat_sp_4(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Concat_sp_5(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Concat_sp_5() - false - else true - private fun startsWith_Concat_sp_5(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Concat_sp_6(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Concat_sp_6() - false - else true - private fun startsWith_Concat_sp_6(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_In_sp_1(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_In_sp_1() - false - else true - private fun startsWith_Concat_sp_7(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Concat_sp_8(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Concat_sp_8() - false - else true - private fun startsWith_Concat_sp_8(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Star_sp_1(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Star_sp_1() - scrut14 = p2.startsWith_Concat_sp_9(c) - if scrut14 is - true then true - else false - else true - private fun startsWith_Concat_sp_9(c) = - let {scrut13, scrut14, tmp32} - tmp32 = p1.startsWith_Exact_sp_1(c) - if tmp32 is - false then - scrut13 = p1.canBeEmpty_Exact_sp_1() - false - else true - class Star(val p) extends RegExp() with - () - fun canBeEmpty() = true - fun derive(c) = - let {tmp33, tmp34, tmp35} - tmp33 = p.derive(c) - tmp34 = new Star.class(p) - tmp35 = new Concat(tmp33, tmp34) - tmp35.normalize_Concat_sp_1() - fun eq(other) = - let {p__, arg_Star_0_} - if other is - Star then - arg_Star_0_ = other.p - p__ = arg_Star_0_ - p.eq(p__) - else false - fun normalize() = - let {tmp36} - tmp36 = p.normalize() - new Star.class(tmp36) - fun startsWith(c) = p.startsWith(c) - private fun canBeEmpty_Star_sp_0() = true - private fun canBeEmpty_Star_sp_1() = true - private fun derive_Star_sp_0(c) = - let {tmp33, tmp34, tmp35} - tmp33 = p.derive_In_sp_0(c) - tmp34 = new Star.class(p) - tmp35 = new Concat(tmp33, tmp34) - tmp35.normalize_Concat_sp_2() - private fun derive_Star_sp_1(c) = - let {tmp33, tmp34, tmp35} - tmp33 = p.derive_In_sp_1(c) - tmp34 = new Star.class(p) - tmp35 = new Concat(tmp33, tmp34) - tmp35.normalize_Concat_sp_9() - private fun normalize_Star_sp_0() = - let {tmp36} - tmp36 = p.normalize() - new Star.class(tmp36) - private fun normalize_Star_sp_1() = - let {tmp36} - tmp36 = p.normalize_In_sp_0() - new Star.class(tmp36) - private fun normalize_Star_sp_2() = - let {tmp36} - tmp36 = p.normalize_In_sp_1() - new Star.class(tmp36) - private fun normalize_Star_sp_3() = - let {tmp36} - tmp36 = p.normalize_Not_sp_0() - new Star.class(tmp36) - private fun normalize_Star_sp_4() = - let {tmp36} - tmp36 = p.normalize_Not_sp_1() - new Star.class(tmp36) - private fun normalize_Star_sp_5() = - let {tmp36} - tmp36 = p.normalize_In_sp_2() - new Star.class(tmp36) - private fun startsWith_Star_sp_0(c) = p.startsWith_In_sp_0(c) - private fun startsWith_Star_sp_1(c) = p.startsWith_In_sp_1(c) - fun arrEq(arr1, arr2) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".eq(arr1, arr2) - fun concat(lhs, rhs) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".concat(lhs, rhs) - fun digits() = - let {tmp51, tup_8} - tup_8 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - tmp51 = tup_8 - new In(tmp51) - fun has(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) - fun len(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) - fun match(p, s) = matchImpl_StagedRegExp_sp_0(p, s, "") - fun matchAll(p, s) = - let {tmp66} - tmp66 = [] - matchAllImpl_StagedRegExp_sp_0(p, s, tmp66) - fun matchAllEmail(s) = - let {p7, email, tmp67, tmp68, tmp69, tmp70, tmp71, tmp72, tmp73, tmp74, tmp75, tup_9, tup_10, tup_11, obj_12, tup_13, obj_14, obj_15, obj_16} - tup_9 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - tmp67 = tup_9 - tmp68 = ["-", "."] - tup_10 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] - tmp69 = tup_10 - tmp70 = new In(tmp69) - tup_11 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] - obj_12 = new In(tup_11) - tup_13 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] - obj_14 = new In(tup_13) - obj_15 = new Star(obj_14) - obj_16 = new Concat(obj_12, obj_15) - p7 = obj_16 - tmp71 = new Exact("@") - tmp72 = new Exact(".") - tmp73 = new Concat(tmp72, p7) - tmp74 = new Concat(p7, tmp73) - tmp75 = new Concat(tmp71, tmp74) - email = new Concat(p7, tmp75) - matchAll_StagedRegExp_sp_0(email, s) - fun matchAllIPv4(s) = - let {fo, fi, segment, ipv4, tmp102, tmp103, tmp104, tmp105, tmp106, tmp107, tmp108, tmp109, tmp110, tmp111, tmp112, tmp113, tmp114, tmp115, tmp116, tmp117, tmp118, tmp119, tmp120, tmp121, tmp122, tup_59, obj_60, obj_61, obj_62, obj_63, tup_64, obj_65, tup_66, obj_67, obj_68, obj_69, tup_70, obj_71, obj_157, obj_158, tup_159, obj_160, obj_161, obj_162, obj_163, tup_164, obj_165, tup_166, obj_167, obj_168, obj_169, obj_170, obj_171, obj_172, tup_173, obj_174, obj_175, obj_176, tup_177, obj_178, obj_179, obj_180, obj_181, obj_182, obj_183, obj_184, obj_185, obj_186, tup_187, obj_188, obj_189, obj_190, obj_191, tup_192, obj_193, tup_194, obj_195, obj_196, obj_197, obj_198, obj_199, obj_200, tup_201, obj_202, obj_203, obj_204, tup_205, obj_206, obj_207, obj_208, obj_209, obj_210, obj_211, obj_212, obj_213, obj_214, tup_215, obj_216, obj_217, obj_218, obj_219, tup_220, obj_221, tup_222, obj_223, obj_224, obj_225, obj_226, obj_227, obj_228, tup_229, obj_230, obj_231, obj_232, tup_233, obj_234, obj_235, obj_236, obj_237, obj_238, obj_239, obj_240, obj_241, obj_242} - tmp102 = ["0", "1", "2", "3", "4"] - fo = new In(tmp102) - tmp103 = ["0", "1", "2", "3", "4", "5"] - fi = new In(tmp103) - tmp104 = new Exact("2") - tmp105 = new Exact("5") - tmp106 = new Concat(tmp105, fi) - tmp107 = new Concat(tmp104, tmp106) - tmp108 = new Exact("2") - tup_59 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_60 = new In(tup_59) - tmp109 = obj_60 - tmp110 = new Concat(fo, tmp109) - tmp111 = new Concat(tmp108, tmp110) - tmp112 = new Exact("1") - obj_61 = new Exact("1") - obj_62 = new Empty() - obj_63 = new Union(obj_61, obj_62) - tmp113 = obj_63 - tup_64 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_65 = new In(tup_64) - tmp114 = obj_65 - tup_66 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_67 = new In(tup_66) - obj_68 = new Empty() - obj_69 = new Union(obj_67, obj_68) - tmp115 = obj_69 - tup_70 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_71 = new In(tup_70) - tmp116 = obj_71 - tmp117 = new Concat(tmp115, tmp116) - tmp118 = new Concat(tmp113, tmp117) - tmp119 = new Union(tmp111, tmp118) - segment = new Union(tmp107, tmp119) - tmp120 = new Exact(".") - tmp121 = new Concat(segment, tmp120) - obj_157 = new Exact("2") - obj_158 = new Exact("5") - tup_159 = ["0", "1", "2", "3", "4", "5"] - obj_160 = new In(tup_159) - obj_161 = new Concat(obj_158, obj_160) - obj_162 = new Concat(obj_157, obj_161) - obj_163 = new Exact("2") - tup_164 = ["0", "1", "2", "3", "4"] - obj_165 = new In(tup_164) - tup_166 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_167 = new In(tup_166) - obj_168 = new Concat(obj_165, obj_167) - obj_169 = new Concat(obj_163, obj_168) - obj_170 = new Exact("1") - obj_171 = new Empty() - obj_172 = new Union(obj_170, obj_171) - tup_173 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_174 = new In(tup_173) - obj_175 = new Empty() - obj_176 = new Union(obj_174, obj_175) - tup_177 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_178 = new In(tup_177) - obj_179 = new Concat(obj_176, obj_178) - obj_180 = new Concat(obj_172, obj_179) - obj_181 = new Union(obj_169, obj_180) - obj_182 = new Union(obj_162, obj_181) - obj_183 = new Exact(".") - obj_184 = new Concat(obj_182, obj_183) - obj_185 = new Exact("2") - obj_186 = new Exact("5") - tup_187 = ["0", "1", "2", "3", "4", "5"] - obj_188 = new In(tup_187) - obj_189 = new Concat(obj_186, obj_188) - obj_190 = new Concat(obj_185, obj_189) - obj_191 = new Exact("2") - tup_192 = ["0", "1", "2", "3", "4"] - obj_193 = new In(tup_192) - tup_194 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_195 = new In(tup_194) - obj_196 = new Concat(obj_193, obj_195) - obj_197 = new Concat(obj_191, obj_196) - obj_198 = new Exact("1") - obj_199 = new Empty() - obj_200 = new Union(obj_198, obj_199) - tup_201 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_202 = new In(tup_201) - obj_203 = new Empty() - obj_204 = new Union(obj_202, obj_203) - tup_205 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_206 = new In(tup_205) - obj_207 = new Concat(obj_204, obj_206) - obj_208 = new Concat(obj_200, obj_207) - obj_209 = new Union(obj_197, obj_208) - obj_210 = new Union(obj_190, obj_209) - obj_211 = new Exact(".") - obj_212 = new Concat(obj_210, obj_211) - obj_213 = new Exact("2") - obj_214 = new Exact("5") - tup_215 = ["0", "1", "2", "3", "4", "5"] - obj_216 = new In(tup_215) - obj_217 = new Concat(obj_214, obj_216) - obj_218 = new Concat(obj_213, obj_217) - obj_219 = new Exact("2") - tup_220 = ["0", "1", "2", "3", "4"] - obj_221 = new In(tup_220) - tup_222 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_223 = new In(tup_222) - obj_224 = new Concat(obj_221, obj_223) - obj_225 = new Concat(obj_219, obj_224) - obj_226 = new Exact("1") - obj_227 = new Empty() - obj_228 = new Union(obj_226, obj_227) - tup_229 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_230 = new In(tup_229) - obj_231 = new Empty() - obj_232 = new Union(obj_230, obj_231) - tup_233 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_234 = new In(tup_233) - obj_235 = new Concat(obj_232, obj_234) - obj_236 = new Concat(obj_228, obj_235) - obj_237 = new Union(obj_225, obj_236) - obj_238 = new Union(obj_218, obj_237) - obj_239 = new Exact(".") - obj_240 = new Concat(obj_238, obj_239) - obj_241 = new Concat(obj_212, obj_240) - obj_242 = new Concat(obj_184, obj_241) - tmp122 = obj_242 - ipv4 = new Concat(tmp122, segment) - matchAll_StagedRegExp_sp_2(ipv4, s) - fun matchAllImpl(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} - tmp59 = len(s) - scrut22 = ==(tmp59, 0) - if scrut22 is - true then res - else - scrut23 = match(p, s) - if scrut23 is - Some then - arg_Some_0_ = scrut23.x - ss = arg_Some_0_ - tmp60 = len(ss) - scrut24 = >(tmp60, 0) - if scrut24 is - true then - tmp61 = len(ss) - tmp62 = s.slice(tmp61) - tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl(p, tmp62, tmp63) - else - tmp64 = s.slice(1) - matchAllImpl(p, tmp64, res) - else - tmp65 = s.slice(1) - matchAllImpl(p, tmp65, res) - fun matchAllURI(s) = - let {n1, n2, n3, w, d, p8, head, body, params, uri, tmp76, tmp77, tmp78, tmp79, tmp80, tmp81, tmp82, tmp83, tmp84, tmp85, tmp86, tmp87, tmp88, tmp89, tmp90, tmp91, tmp92, tmp93, tmp94, tmp95, tmp96, tmp97, tmp98, tmp99, tmp100, tmp101, tup_19, obj_20, tup_21, obj_22, tup_23, tup_24, tup_25, tup_26, tup_27, obj_28, tup_29, obj_30, obj_31, obj_32, tup_33, obj_34, tup_35, obj_36, obj_37, obj_38, tup_39, obj_40, tup_41, obj_42, obj_43, obj_44, obj_45, tup_46, obj_47, obj_48, obj_49, obj_50, obj_51, obj_52, tup_53, obj_54, obj_55, obj_56, obj_57, obj_58} - tmp76 = ["/", "?", "#", " ", "\n", "\t", "\r"] - n1 = new Not(tmp76) - tmp77 = ["?", "#", " ", "\n", "\t", "\r"] - n2 = new Not(tmp77) - tmp78 = ["#", " ", "\n", "\t", "\r"] - n3 = new Not(tmp78) - tup_19 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - obj_20 = new In(tup_19) - w = obj_20 - tup_21 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_22 = new In(tup_21) - d = obj_22 - tup_23 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - tmp79 = tup_23 - tup_24 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - tmp80 = tup_24 - tmp81 = ["-", "_"] - tup_25 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] - tmp82 = tup_25 - tup_26 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] - p8 = tup_26 - tup_27 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - obj_28 = new In(tup_27) - tup_29 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - obj_30 = new In(tup_29) - obj_31 = new Star(obj_30) - obj_32 = new Concat(obj_28, obj_31) - tmp83 = obj_32 - tmp84 = new Exact(":") - tmp85 = new Exact("/") - tmp86 = new Exact("/") - tmp87 = new Concat(tmp85, tmp86) - tmp88 = new Concat(tmp84, tmp87) - head = new Concat(tmp83, tmp88) - tup_33 = ["/", "?", "#", " ", "\n", "\t", "\r"] - obj_34 = new Not(tup_33) - tup_35 = ["/", "?", "#", " ", "\n", "\t", "\r"] - obj_36 = new Not(tup_35) - obj_37 = new Star(obj_36) - obj_38 = new Concat(obj_34, obj_37) - tmp89 = obj_38 - tup_39 = ["?", "#", " ", "\n", "\t", "\r"] - obj_40 = new Not(tup_39) - tup_41 = ["?", "#", " ", "\n", "\t", "\r"] - obj_42 = new Not(tup_41) - obj_43 = new Star(obj_42) - obj_44 = new Concat(obj_40, obj_43) - tmp90 = obj_44 - body = new Concat(tmp89, tmp90) - tmp91 = new Exact("?") - tmp92 = new In(p8) - tmp93 = new Star(tmp92) - tmp94 = new Concat(tmp91, tmp93) - obj_45 = new Exact("?") - tup_46 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] - obj_47 = new In(tup_46) - obj_48 = new Star(obj_47) - obj_49 = new Concat(obj_45, obj_48) - obj_50 = new Empty() - obj_51 = new Union(obj_49, obj_50) - tmp95 = obj_51 - tmp96 = new Exact("#") - tmp97 = new In(p8) - tmp98 = new Star(tmp97) - tmp99 = new Concat(tmp96, tmp98) - obj_52 = new Exact("#") - tup_53 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] - obj_54 = new In(tup_53) - obj_55 = new Star(obj_54) - obj_56 = new Concat(obj_52, obj_55) - obj_57 = new Empty() - obj_58 = new Union(obj_56, obj_57) - tmp100 = obj_58 - params = new Concat(tmp95, tmp100) - tmp101 = new Concat(body, params) - uri = new Concat(head, tmp101) - matchAll_StagedRegExp_sp_1(uri, s) - fun matchImpl(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} - tmp55 = len(s) - scrut18 = ==(tmp55, 0) - if scrut18 is - true then - scrut19 = p.canBeEmpty() - if scrut19 is - true then new Some(acc) - else new None() - else - if p is - Nothing then new None() - else - c18 = s.0 - scrut20 = p.startsWith(c18) - if scrut20 is - true then - tmp56 = p.derive(c18) - tmp57 = s.slice(1) - tmp58 = acc + c18 - matchImpl(tmp56, tmp57, tmp58) - else - scrut21 = p.canBeEmpty() - if scrut21 is - true then new Some(acc) - else new None() - fun mkUnion(arr, i, s) = - let {scrut15, scrut16, tmp40, tmp41, tmp42, tmp43, tmp44, tmp45, tmp46, tmp47} - tmp40 = s - i - tmp41 = s - 1 - scrut15 = ==(tmp40, tmp41) - if scrut15 is - true then - tmp42 = s - i - arr.(tmp42) - else - tmp43 = s - i - scrut16 = arr.(tmp43) - if scrut16 is - Nothing then - tmp44 = i - 1 - mkUnion(arr, tmp44, s) - else - tmp45 = s - i - tmp46 = i - 1 - tmp47 = mkUnion(arr, tmp46, s) - new Union(arr.(tmp45), tmp47) - fun nTimes(r, i) = - let {scrut17, tmp52, tmp53} - scrut17 = ==(i, 1) - if scrut17 is - true then r - else - tmp52 = i - 1 - tmp53 = nTimes(r, tmp52) - new Concat(r, tmp53) - fun notDigit() = - let {tmp39, tup_5} - tup_5 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - tmp39 = tup_5 - new Not(tmp39) - fun notSpace() = - let {tmp38, tup_4} - tup_4 = [" ", "\n", "\t", "\r"] - tmp38 = tup_4 - new Not(tmp38) - fun notWord() = - let {tmp37, tup_3} - tup_3 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - tmp37 = tup_3 - new Not(tmp37) - fun plus(r) = - let {tmp54} - tmp54 = new Star(r) - new Concat(r, tmp54) - fun push(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(arr, ele) - fun question(r) = - let {tmp48} - tmp48 = new Empty() - new Union(r, tmp48) - fun setEq(s1, s2) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".setEq(s1, s2) - fun spaces() = - let {tmp50, tup_7} - tup_7 = [" ", "\n", "\t", "\r"] - tmp50 = tup_7 - new In(tmp50) - fun words() = - let {tmp49, tup_6} - tup_6 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - tmp49 = tup_6 - new In(tmp49) - private fun has_StagedRegExp_sp_0(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) - private fun has_StagedRegExp_sp_1(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) - private fun has_StagedRegExp_sp_2(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) - private fun has_StagedRegExp_sp_3(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) - private fun len_StagedRegExp_sp_0(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) - private fun len_StagedRegExp_sp_1(s) = 1 - private fun len_StagedRegExp_sp_2(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) - private fun len_StagedRegExp_sp_3(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) - private fun len_StagedRegExp_sp_4(s) = 1 - private fun len_StagedRegExp_sp_5(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) - private fun len_StagedRegExp_sp_6(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) - private fun len_StagedRegExp_sp_7(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) - private fun matchAllImpl_StagedRegExp_sp_0(p, s, res) = + arg_Star_0_ = other.p + p__ = arg_Star_0_ + p.eq(p__) + else false + fun normalize() = + let {tmp36} + tmp36 = p.normalize() + new Star.class(tmp36) + fun startsWith(c) = p.startsWith(c) + fun arrEq(arr1, arr2) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".eq(arr1, arr2) + fun concat(lhs, rhs) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".concat(lhs, rhs) + fun digits() = + let {tmp51, tup_8} + tup_8 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + tmp51 = tup_8 + new In(tmp51) + fun has(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) + fun len(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) + fun match(p, s) = matchImpl_StagedRegExp_sp_0(p, s, "") + fun matchAll(p, s) = + let {tmp66} + tmp66 = [] + matchAllImpl_StagedRegExp_sp_0(p, s, tmp66) + fun matchAllEmail(s) = + let {p7, email, tmp67, tmp68, tmp69, tmp70, tmp71, tmp72, tmp73, tmp74, tmp75, tup_9, tup_10, tup_11, obj_12, tup_13, obj_14, obj_15, obj_16} + tup_9 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + tmp67 = tup_9 + tmp68 = ["-", "."] + tup_10 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] + tmp69 = tup_10 + tmp70 = new In(tmp69) + tup_11 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] + obj_12 = new In(tup_11) + tup_13 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] + obj_14 = new In(tup_13) + obj_15 = new Star(obj_14) + obj_16 = new Concat(obj_12, obj_15) + p7 = obj_16 + tmp71 = new Exact("@") + tmp72 = new Exact(".") + tmp73 = new Concat(tmp72, p7) + tmp74 = new Concat(p7, tmp73) + tmp75 = new Concat(tmp71, tmp74) + email = new Concat(p7, tmp75) + matchAll_StagedRegExp_sp_0(email, s) + fun matchAllIPv4(s) = + let {fo, fi, segment, ipv4, tmp102, tmp103, tmp104, tmp105, tmp106, tmp107, tmp108, tmp109, tmp110, tmp111, tmp112, tmp113, tmp114, tmp115, tmp116, tmp117, tmp118, tmp119, tmp120, tmp121, tmp122, tup_59, obj_60, obj_61, obj_62, obj_63, tup_64, obj_65, tup_66, obj_67, obj_68, obj_69, tup_70, obj_71, obj_157, obj_158, tup_159, obj_160, obj_161, obj_162, obj_163, tup_164, obj_165, tup_166, obj_167, obj_168, obj_169, obj_170, obj_171, obj_172, tup_173, obj_174, obj_175, obj_176, tup_177, obj_178, obj_179, obj_180, obj_181, obj_182, obj_183, obj_184, obj_185, obj_186, tup_187, obj_188, obj_189, obj_190, obj_191, tup_192, obj_193, tup_194, obj_195, obj_196, obj_197, obj_198, obj_199, obj_200, tup_201, obj_202, obj_203, obj_204, tup_205, obj_206, obj_207, obj_208, obj_209, obj_210, obj_211, obj_212, obj_213, obj_214, tup_215, obj_216, obj_217, obj_218, obj_219, tup_220, obj_221, tup_222, obj_223, obj_224, obj_225, obj_226, obj_227, obj_228, tup_229, obj_230, obj_231, obj_232, tup_233, obj_234, obj_235, obj_236, obj_237, obj_238, obj_239, obj_240, obj_241, obj_242} + tmp102 = ["0", "1", "2", "3", "4"] + fo = new In(tmp102) + tmp103 = ["0", "1", "2", "3", "4", "5"] + fi = new In(tmp103) + tmp104 = new Exact("2") + tmp105 = new Exact("5") + tmp106 = new Concat(tmp105, fi) + tmp107 = new Concat(tmp104, tmp106) + tmp108 = new Exact("2") + tup_59 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_60 = new In(tup_59) + tmp109 = obj_60 + tmp110 = new Concat(fo, tmp109) + tmp111 = new Concat(tmp108, tmp110) + tmp112 = new Exact("1") + obj_61 = new Exact("1") + obj_62 = new Empty() + obj_63 = new Union(obj_61, obj_62) + tmp113 = obj_63 + tup_64 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_65 = new In(tup_64) + tmp114 = obj_65 + tup_66 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_67 = new In(tup_66) + obj_68 = new Empty() + obj_69 = new Union(obj_67, obj_68) + tmp115 = obj_69 + tup_70 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_71 = new In(tup_70) + tmp116 = obj_71 + tmp117 = new Concat(tmp115, tmp116) + tmp118 = new Concat(tmp113, tmp117) + tmp119 = new Union(tmp111, tmp118) + segment = new Union(tmp107, tmp119) + tmp120 = new Exact(".") + tmp121 = new Concat(segment, tmp120) + obj_157 = new Exact("2") + obj_158 = new Exact("5") + tup_159 = ["0", "1", "2", "3", "4", "5"] + obj_160 = new In(tup_159) + obj_161 = new Concat(obj_158, obj_160) + obj_162 = new Concat(obj_157, obj_161) + obj_163 = new Exact("2") + tup_164 = ["0", "1", "2", "3", "4"] + obj_165 = new In(tup_164) + tup_166 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_167 = new In(tup_166) + obj_168 = new Concat(obj_165, obj_167) + obj_169 = new Concat(obj_163, obj_168) + obj_170 = new Exact("1") + obj_171 = new Empty() + obj_172 = new Union(obj_170, obj_171) + tup_173 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_174 = new In(tup_173) + obj_175 = new Empty() + obj_176 = new Union(obj_174, obj_175) + tup_177 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_178 = new In(tup_177) + obj_179 = new Concat(obj_176, obj_178) + obj_180 = new Concat(obj_172, obj_179) + obj_181 = new Union(obj_169, obj_180) + obj_182 = new Union(obj_162, obj_181) + obj_183 = new Exact(".") + obj_184 = new Concat(obj_182, obj_183) + obj_185 = new Exact("2") + obj_186 = new Exact("5") + tup_187 = ["0", "1", "2", "3", "4", "5"] + obj_188 = new In(tup_187) + obj_189 = new Concat(obj_186, obj_188) + obj_190 = new Concat(obj_185, obj_189) + obj_191 = new Exact("2") + tup_192 = ["0", "1", "2", "3", "4"] + obj_193 = new In(tup_192) + tup_194 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_195 = new In(tup_194) + obj_196 = new Concat(obj_193, obj_195) + obj_197 = new Concat(obj_191, obj_196) + obj_198 = new Exact("1") + obj_199 = new Empty() + obj_200 = new Union(obj_198, obj_199) + tup_201 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_202 = new In(tup_201) + obj_203 = new Empty() + obj_204 = new Union(obj_202, obj_203) + tup_205 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_206 = new In(tup_205) + obj_207 = new Concat(obj_204, obj_206) + obj_208 = new Concat(obj_200, obj_207) + obj_209 = new Union(obj_197, obj_208) + obj_210 = new Union(obj_190, obj_209) + obj_211 = new Exact(".") + obj_212 = new Concat(obj_210, obj_211) + obj_213 = new Exact("2") + obj_214 = new Exact("5") + tup_215 = ["0", "1", "2", "3", "4", "5"] + obj_216 = new In(tup_215) + obj_217 = new Concat(obj_214, obj_216) + obj_218 = new Concat(obj_213, obj_217) + obj_219 = new Exact("2") + tup_220 = ["0", "1", "2", "3", "4"] + obj_221 = new In(tup_220) + tup_222 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_223 = new In(tup_222) + obj_224 = new Concat(obj_221, obj_223) + obj_225 = new Concat(obj_219, obj_224) + obj_226 = new Exact("1") + obj_227 = new Empty() + obj_228 = new Union(obj_226, obj_227) + tup_229 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_230 = new In(tup_229) + obj_231 = new Empty() + obj_232 = new Union(obj_230, obj_231) + tup_233 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_234 = new In(tup_233) + obj_235 = new Concat(obj_232, obj_234) + obj_236 = new Concat(obj_228, obj_235) + obj_237 = new Union(obj_225, obj_236) + obj_238 = new Union(obj_218, obj_237) + obj_239 = new Exact(".") + obj_240 = new Concat(obj_238, obj_239) + obj_241 = new Concat(obj_212, obj_240) + obj_242 = new Concat(obj_184, obj_241) + tmp122 = obj_242 + ipv4 = new Concat(tmp122, segment) + matchAll_StagedRegExp_sp_2(ipv4, s) + fun matchAllImpl(p, s, res) = let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} tmp59 = len(s) scrut22 = ==(tmp59, 0) @@ -2244,179 +478,90 @@ module StagedRegExp with matchAllImpl(p, tmp62, tmp63) else tmp64 = s.slice(1) - matchAllImpl_StagedRegExp_sp_0(p, tmp64, res) - else - tmp65 = s.slice(1) - matchAllImpl_StagedRegExp_sp_0(p, tmp65, res) - private fun matchAllImpl_StagedRegExp_sp_1(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} - tmp59 = len(s) - scrut22 = ==(tmp59, 0) - if scrut22 is - true then res - else - scrut23 = match_StagedRegExp_sp_0(p, s) - if scrut23 is - Some then - arg_Some_0_ = scrut23.x - ss = arg_Some_0_ - tmp60 = len(ss) - scrut24 = >(tmp60, 0) - if scrut24 is - true then - tmp61 = len(ss) - tmp62 = s.slice(tmp61) - tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl_StagedRegExp_sp_2(p, tmp62, tmp63) - else - tmp64 = s.slice(1) - matchAllImpl_StagedRegExp_sp_1(p, tmp64, res) - else - tmp65 = s.slice(1) - matchAllImpl_StagedRegExp_sp_1(p, tmp65, res) - private fun matchAllImpl_StagedRegExp_sp_2(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} - tmp59 = len(s) - scrut22 = ==(tmp59, 0) - if scrut22 is - true then res - else - scrut23 = match_StagedRegExp_sp_0(p, s) - if scrut23 is - Some then - arg_Some_0_ = scrut23.x - ss = arg_Some_0_ - tmp60 = len(ss) - scrut24 = >(tmp60, 0) - if scrut24 is - true then - tmp61 = len(ss) - tmp62 = s.slice(tmp61) - tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl_StagedRegExp_sp_2(p, tmp62, tmp63) - else - tmp64 = s.slice(1) - matchAllImpl_StagedRegExp_sp_2(p, tmp64, res) - else - tmp65 = s.slice(1) - matchAllImpl_StagedRegExp_sp_2(p, tmp65, res) - private fun matchAllImpl_StagedRegExp_sp_3(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} - tmp59 = len(s) - scrut22 = ==(tmp59, 0) - if scrut22 is - true then res - else - scrut23 = match_StagedRegExp_sp_1(p, s) - if scrut23 is - Some then - arg_Some_0_ = scrut23.x - ss = arg_Some_0_ - tmp60 = len(ss) - scrut24 = >(tmp60, 0) - if scrut24 is - true then - tmp61 = len(ss) - tmp62 = s.slice(tmp61) - tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl_StagedRegExp_sp_4(p, tmp62, tmp63) - else - tmp64 = s.slice(1) - matchAllImpl_StagedRegExp_sp_3(p, tmp64, res) - else - tmp65 = s.slice(1) - matchAllImpl_StagedRegExp_sp_3(p, tmp65, res) - private fun matchAllImpl_StagedRegExp_sp_4(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} - tmp59 = len(s) - scrut22 = ==(tmp59, 0) - if scrut22 is - true then res - else - scrut23 = match_StagedRegExp_sp_1(p, s) - if scrut23 is - Some then - arg_Some_0_ = scrut23.x - ss = arg_Some_0_ - tmp60 = len(ss) - scrut24 = >(tmp60, 0) - if scrut24 is - true then - tmp61 = len(ss) - tmp62 = s.slice(tmp61) - tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl_StagedRegExp_sp_4(p, tmp62, tmp63) - else - tmp64 = s.slice(1) - matchAllImpl_StagedRegExp_sp_4(p, tmp64, res) - else - tmp65 = s.slice(1) - matchAllImpl_StagedRegExp_sp_4(p, tmp65, res) - private fun matchAllImpl_StagedRegExp_sp_5(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} - tmp59 = len(s) - scrut22 = ==(tmp59, 0) - if scrut22 is - true then res - else - scrut23 = match_StagedRegExp_sp_2(p, s) - if scrut23 is - Some then - arg_Some_0_ = scrut23.x - ss = arg_Some_0_ - tmp60 = len(ss) - scrut24 = >(tmp60, 0) - if scrut24 is - true then - tmp61 = len(ss) - tmp62 = s.slice(tmp61) - tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl_StagedRegExp_sp_6(p, tmp62, tmp63) - else - tmp64 = s.slice(1) - matchAllImpl_StagedRegExp_sp_5(p, tmp64, res) - else - tmp65 = s.slice(1) - matchAllImpl_StagedRegExp_sp_5(p, tmp65, res) - private fun matchAllImpl_StagedRegExp_sp_6(p, s, res) = - let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} - tmp59 = len(s) - scrut22 = ==(tmp59, 0) - if scrut22 is - true then res - else - scrut23 = match_StagedRegExp_sp_2(p, s) - if scrut23 is - Some then - arg_Some_0_ = scrut23.x - ss = arg_Some_0_ - tmp60 = len(ss) - scrut24 = >(tmp60, 0) - if scrut24 is - true then - tmp61 = len(ss) - tmp62 = s.slice(tmp61) - tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) - matchAllImpl_StagedRegExp_sp_6(p, tmp62, tmp63) - else - tmp64 = s.slice(1) - matchAllImpl_StagedRegExp_sp_6(p, tmp64, res) + matchAllImpl(p, tmp64, res) else tmp65 = s.slice(1) - matchAllImpl_StagedRegExp_sp_6(p, tmp65, res) - private fun matchAll_StagedRegExp_sp_0(p, s) = - let {tmp66} - tmp66 = [] - matchAllImpl_StagedRegExp_sp_1(p, s, tmp66) - private fun matchAll_StagedRegExp_sp_1(p, s) = - let {tmp66} - tmp66 = [] - matchAllImpl_StagedRegExp_sp_3(p, s, tmp66) - private fun matchAll_StagedRegExp_sp_2(p, s) = - let {tmp66} - tmp66 = [] - matchAllImpl_StagedRegExp_sp_5(p, s, tmp66) - private fun matchImpl_StagedRegExp_sp_0(p, s, acc) = + matchAllImpl(p, tmp65, res) + fun matchAllURI(s) = + let {n1, n2, n3, w, d, p8, head, body, params, uri, tmp76, tmp77, tmp78, tmp79, tmp80, tmp81, tmp82, tmp83, tmp84, tmp85, tmp86, tmp87, tmp88, tmp89, tmp90, tmp91, tmp92, tmp93, tmp94, tmp95, tmp96, tmp97, tmp98, tmp99, tmp100, tmp101, tup_19, obj_20, tup_21, obj_22, tup_23, tup_24, tup_25, tup_26, tup_27, obj_28, tup_29, obj_30, obj_31, obj_32, tup_33, obj_34, tup_35, obj_36, obj_37, obj_38, tup_39, obj_40, tup_41, obj_42, obj_43, obj_44, obj_45, tup_46, obj_47, obj_48, obj_49, obj_50, obj_51, obj_52, tup_53, obj_54, obj_55, obj_56, obj_57, obj_58} + tmp76 = ["/", "?", "#", " ", "\n", "\t", "\r"] + n1 = new Not(tmp76) + tmp77 = ["?", "#", " ", "\n", "\t", "\r"] + n2 = new Not(tmp77) + tmp78 = ["#", " ", "\n", "\t", "\r"] + n3 = new Not(tmp78) + tup_19 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + obj_20 = new In(tup_19) + w = obj_20 + tup_21 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_22 = new In(tup_21) + d = obj_22 + tup_23 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + tmp79 = tup_23 + tup_24 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + tmp80 = tup_24 + tmp81 = ["-", "_"] + tup_25 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] + tmp82 = tup_25 + tup_26 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] + p8 = tup_26 + tup_27 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + obj_28 = new In(tup_27) + tup_29 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + obj_30 = new In(tup_29) + obj_31 = new Star(obj_30) + obj_32 = new Concat(obj_28, obj_31) + tmp83 = obj_32 + tmp84 = new Exact(":") + tmp85 = new Exact("/") + tmp86 = new Exact("/") + tmp87 = new Concat(tmp85, tmp86) + tmp88 = new Concat(tmp84, tmp87) + head = new Concat(tmp83, tmp88) + tup_33 = ["/", "?", "#", " ", "\n", "\t", "\r"] + obj_34 = new Not(tup_33) + tup_35 = ["/", "?", "#", " ", "\n", "\t", "\r"] + obj_36 = new Not(tup_35) + obj_37 = new Star(obj_36) + obj_38 = new Concat(obj_34, obj_37) + tmp89 = obj_38 + tup_39 = ["?", "#", " ", "\n", "\t", "\r"] + obj_40 = new Not(tup_39) + tup_41 = ["?", "#", " ", "\n", "\t", "\r"] + obj_42 = new Not(tup_41) + obj_43 = new Star(obj_42) + obj_44 = new Concat(obj_40, obj_43) + tmp90 = obj_44 + body = new Concat(tmp89, tmp90) + tmp91 = new Exact("?") + tmp92 = new In(p8) + tmp93 = new Star(tmp92) + tmp94 = new Concat(tmp91, tmp93) + obj_45 = new Exact("?") + tup_46 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] + obj_47 = new In(tup_46) + obj_48 = new Star(obj_47) + obj_49 = new Concat(obj_45, obj_48) + obj_50 = new Empty() + obj_51 = new Union(obj_49, obj_50) + tmp95 = obj_51 + tmp96 = new Exact("#") + tmp97 = new In(p8) + tmp98 = new Star(tmp97) + tmp99 = new Concat(tmp96, tmp98) + obj_52 = new Exact("#") + tup_53 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] + obj_54 = new In(tup_53) + obj_55 = new Star(obj_54) + obj_56 = new Concat(obj_52, obj_55) + obj_57 = new Empty() + obj_58 = new Union(obj_56, obj_57) + tmp100 = obj_58 + params = new Concat(tmp95, tmp100) + tmp101 = new Concat(body, params) + uri = new Concat(head, tmp101) + matchAll_StagedRegExp_sp_1(uri, s) + fun matchImpl(p, s, acc) = let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} tmp55 = len(s) scrut18 = ==(tmp55, 0) @@ -2436,359 +581,2215 @@ module StagedRegExp with true then tmp56 = p.derive(c18) tmp57 = s.slice(1) - tmp58 = "" + c18 + tmp58 = acc + c18 matchImpl(tmp56, tmp57, tmp58) else scrut21 = p.canBeEmpty() if scrut21 is true then new Some(acc) else new None() - private fun matchImpl_StagedRegExp_sp_1(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} - tmp55 = len(s) - scrut18 = ==(tmp55, 0) - if scrut18 is + fun mkUnion(arr, i, s) = + let {scrut15, scrut16, tmp40, tmp41, tmp42, tmp43, tmp44, tmp45, tmp46, tmp47} + tmp40 = s - i + tmp41 = s - 1 + scrut15 = ==(tmp40, tmp41) + if scrut15 is true then - scrut19 = p.canBeEmpty_Concat_sp_0() - new None() + tmp42 = s - i + arr.(tmp42) + else + tmp43 = s - i + scrut16 = arr.(tmp43) + if scrut16 is + Nothing then + tmp44 = i - 1 + mkUnion(arr, tmp44, s) + else + tmp45 = s - i + tmp46 = i - 1 + tmp47 = mkUnion(arr, tmp46, s) + new Union(arr.(tmp45), tmp47) + fun nTimes(r, i) = + let {scrut17, tmp52, tmp53} + scrut17 = ==(i, 1) + if scrut17 is + true then r + else + tmp52 = i - 1 + tmp53 = nTimes(r, tmp52) + new Concat(r, tmp53) + fun notDigit() = + let {tmp39, tup_5} + tup_5 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + tmp39 = tup_5 + new Not(tmp39) + fun notSpace() = + let {tmp38, tup_4} + tup_4 = [" ", "\n", "\t", "\r"] + tmp38 = tup_4 + new Not(tmp38) + fun notWord() = + let {tmp37, tup_3} + tup_3 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + tmp37 = tup_3 + new Not(tmp37) + fun plus(r) = + let {tmp54} + tmp54 = new Star(r) + new Concat(r, tmp54) + fun push(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(arr, ele) + fun question(r) = + let {tmp48} + tmp48 = new Empty() + new Union(r, tmp48) + fun setEq(s1, s2) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".setEq(s1, s2) + fun spaces() = + let {tmp50, tup_7} + tup_7 = [" ", "\n", "\t", "\r"] + tmp50 = tup_7 + new In(tmp50) + fun words() = + let {tmp49, tup_6} + tup_6 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + tmp49 = tup_6 + new In(tmp49) +open StagedRegExp +fun has_StagedRegExp_sp_0(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) +fun has_StagedRegExp_sp_1(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) +fun has_StagedRegExp_sp_2(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) +fun has_StagedRegExp_sp_3(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) +fun len_StagedRegExp_sp_0(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) +fun len_StagedRegExp_sp_1(s) = 1 +fun len_StagedRegExp_sp_2(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) +fun len_StagedRegExp_sp_3(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) +fun len_StagedRegExp_sp_4(s) = 1 +fun len_StagedRegExp_sp_5(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) +fun len_StagedRegExp_sp_6(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) +fun len_StagedRegExp_sp_7(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) +fun matchAllImpl_StagedRegExp_sp_0(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) + if scrut22 is + true then res + else + scrut23 = match(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp60 = len(ss) + scrut24 = >(tmp60, 0) + if scrut24 is + true then + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl(p, tmp62, tmp63) + else + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_0(p, tmp64, res) + else + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_0(p, tmp65, res) +fun matchAllImpl_StagedRegExp_sp_1(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) + if scrut22 is + true then res + else + scrut23 = match_StagedRegExp_sp_0(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp60 = len(ss) + scrut24 = >(tmp60, 0) + if scrut24 is + true then + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_2(p, tmp62, tmp63) + else + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_1(p, tmp64, res) + else + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_1(p, tmp65, res) +fun matchAllImpl_StagedRegExp_sp_2(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) + if scrut22 is + true then res + else + scrut23 = match_StagedRegExp_sp_0(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp60 = len(ss) + scrut24 = >(tmp60, 0) + if scrut24 is + true then + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_2(p, tmp62, tmp63) + else + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_2(p, tmp64, res) + else + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_2(p, tmp65, res) +fun matchAllImpl_StagedRegExp_sp_3(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) + if scrut22 is + true then res + else + scrut23 = match_StagedRegExp_sp_1(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp60 = len(ss) + scrut24 = >(tmp60, 0) + if scrut24 is + true then + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_4(p, tmp62, tmp63) + else + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_3(p, tmp64, res) + else + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_3(p, tmp65, res) +fun matchAllImpl_StagedRegExp_sp_4(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) + if scrut22 is + true then res + else + scrut23 = match_StagedRegExp_sp_1(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp60 = len(ss) + scrut24 = >(tmp60, 0) + if scrut24 is + true then + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_4(p, tmp62, tmp63) + else + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_4(p, tmp64, res) + else + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_4(p, tmp65, res) +fun matchAllImpl_StagedRegExp_sp_5(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) + if scrut22 is + true then res + else + scrut23 = match_StagedRegExp_sp_2(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp60 = len(ss) + scrut24 = >(tmp60, 0) + if scrut24 is + true then + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_6(p, tmp62, tmp63) + else + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_5(p, tmp64, res) + else + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_5(p, tmp65, res) +fun matchAllImpl_StagedRegExp_sp_6(p, s, res) = + let {scrut22, scrut23, ss, scrut24, tmp59, arg_Some_0_, tmp60, tmp61, tmp62, tmp63, tmp64, tmp65} + tmp59 = len(s) + scrut22 = ==(tmp59, 0) + if scrut22 is + true then res + else + scrut23 = match_StagedRegExp_sp_2(p, s) + if scrut23 is + Some then + arg_Some_0_ = scrut23.x + ss = arg_Some_0_ + tmp60 = len(ss) + scrut24 = >(tmp60, 0) + if scrut24 is + true then + tmp61 = len(ss) + tmp62 = s.slice(tmp61) + tmp63 = StagedRegExp__Legacy."SeqHelper$StagedRegExp".push(res, ss) + matchAllImpl_StagedRegExp_sp_6(p, tmp62, tmp63) + else + tmp64 = s.slice(1) + matchAllImpl_StagedRegExp_sp_6(p, tmp64, res) + else + tmp65 = s.slice(1) + matchAllImpl_StagedRegExp_sp_6(p, tmp65, res) +fun matchAll_StagedRegExp_sp_0(p, s) = + let {tmp66} + tmp66 = [] + matchAllImpl_StagedRegExp_sp_1(p, s, tmp66) +fun matchAll_StagedRegExp_sp_1(p, s) = + let {tmp66} + tmp66 = [] + matchAllImpl_StagedRegExp_sp_3(p, s, tmp66) +fun matchAll_StagedRegExp_sp_2(p, s) = + let {tmp66} + tmp66 = [] + matchAllImpl_StagedRegExp_sp_5(p, s, tmp66) +fun matchImpl_StagedRegExp_sp_0(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) + if scrut18 is + true then + scrut19 = p.canBeEmpty() + if scrut19 is + true then new Some(acc) + else new None() + else + if p is + Nothing then new None() else c18 = s.0 - scrut20 = p.startsWith_Concat_sp_0(c18) + scrut20 = p.startsWith(c18) if scrut20 is true then - tmp56 = p.derive_Concat_sp_0(c18) + tmp56 = p.derive(c18) tmp57 = s.slice(1) tmp58 = "" + c18 - matchImpl_StagedRegExp_sp_2(tmp56, tmp57, tmp58) + matchImpl(tmp56, tmp57, tmp58) else - scrut21 = p.canBeEmpty_Concat_sp_0() - new None() - private fun matchImpl_StagedRegExp_sp_2(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} - tmp55 = len(s) - scrut18 = ==(tmp55, 0) - if scrut18 is + scrut21 = p.canBeEmpty() + if scrut21 is + true then new Some(acc) + else new None() +fun matchImpl_StagedRegExp_sp_1(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) + if scrut18 is + true then + scrut19 = canBeEmpty_Concat_sp_0(p) + new None() + else + c18 = s.0 + scrut20 = startsWith_Concat_sp_0(p, c18) + if scrut20 is true then - if p is - Nothing then - scrut19 = p.canBeEmpty_Nothing_sp_0() - Concat then - scrut19 = p.canBeEmpty_Concat_sp_2() - new None() + tmp56 = derive_Concat_sp_0(p, c18) + tmp57 = s.slice(1) + tmp58 = "" + c18 + matchImpl_StagedRegExp_sp_2(tmp56, tmp57, tmp58) else - if p is - Nothing then new None() - else - c18 = s.0 - scrut20 = p.startsWith_Concat_sp_2(c18) - if scrut20 is - true then - tmp56 = p.derive_Concat_sp_2(c18) - tmp57 = s.slice(1) - tmp58 = acc + c18 - matchImpl(tmp56, tmp57, tmp58) - else - scrut21 = p.canBeEmpty_Concat_sp_2() - new None() - private fun matchImpl_StagedRegExp_sp_3(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} - tmp55 = len(s) - scrut18 = ==(tmp55, 0) - if scrut18 is - true then - scrut19 = p.canBeEmpty_Concat_sp_4() + scrut21 = canBeEmpty_Concat_sp_0(p) new None() +fun matchImpl_StagedRegExp_sp_2(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) + if scrut18 is + true then + if p is + Nothing then + scrut19 = canBeEmpty_Nothing_sp_0(p) + Concat then + scrut19 = canBeEmpty_Concat_sp_2(p) + new None() + else + if p is + Nothing then new None() else c18 = s.0 - scrut20 = p.startsWith_Concat_sp_4(c18) + scrut20 = startsWith_Concat_sp_2(p, c18) if scrut20 is true then - tmp56 = p.derive_Concat_sp_4(c18) + tmp56 = derive_Concat_sp_2(p, c18) tmp57 = s.slice(1) - tmp58 = "" + c18 - matchImpl_StagedRegExp_sp_4(tmp56, tmp57, tmp58) + tmp58 = acc + c18 + matchImpl(tmp56, tmp57, tmp58) else - scrut21 = p.canBeEmpty_Concat_sp_4() + scrut21 = canBeEmpty_Concat_sp_2(p) new None() - private fun matchImpl_StagedRegExp_sp_4(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} - tmp55 = len(s) - scrut18 = ==(tmp55, 0) - if scrut18 is +fun matchImpl_StagedRegExp_sp_3(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) + if scrut18 is + true then + scrut19 = canBeEmpty_Concat_sp_4(p) + new None() + else + c18 = s.0 + scrut20 = startsWith_Concat_sp_4(p, c18) + if scrut20 is true then - if p is - Nothing then - scrut19 = p.canBeEmpty_Nothing_sp_0() - Concat then - scrut19 = p.canBeEmpty_Concat_sp_7() + tmp56 = derive_Concat_sp_4(p, c18) + tmp57 = s.slice(1) + tmp58 = "" + c18 + matchImpl_StagedRegExp_sp_4(tmp56, tmp57, tmp58) + else + scrut21 = canBeEmpty_Concat_sp_4(p) new None() +fun matchImpl_StagedRegExp_sp_4(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) + if scrut18 is + true then + if p is + Nothing then + scrut19 = canBeEmpty_Nothing_sp_0(p) + Concat then + scrut19 = canBeEmpty_Concat_sp_7(p) + new None() + else + if p is + Nothing then new None() else - if p is - Nothing then new None() + c18 = s.0 + scrut20 = startsWith_Concat_sp_7(p, c18) + if scrut20 is + true then + tmp56 = derive_Concat_sp_7(p, c18) + tmp57 = s.slice(1) + tmp58 = acc + c18 + matchImpl_StagedRegExp_sp_5(tmp56, tmp57, tmp58) else - c18 = s.0 - scrut20 = p.startsWith_Concat_sp_7(c18) - if scrut20 is - true then - tmp56 = p.derive_Concat_sp_7(c18) - tmp57 = s.slice(1) - tmp58 = acc + c18 - matchImpl_StagedRegExp_sp_5(tmp56, tmp57, tmp58) - else - scrut21 = p.canBeEmpty_Concat_sp_7() - new None() - private fun matchImpl_StagedRegExp_sp_5(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} - tmp55 = len(s) - scrut18 = ==(tmp55, 0) - if scrut18 is - true then + scrut21 = canBeEmpty_Concat_sp_7(p) + new None() +fun matchImpl_StagedRegExp_sp_5(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) + if scrut18 is + true then + if p is + Concat then + scrut19 = canBeEmpty_Concat_sp_10(p) + Nothing then + scrut19 = canBeEmpty_Nothing_sp_0(p) + Concat then + scrut19 = canBeEmpty_Concat_sp_13(p) + new None() + else + if p is + Nothing then new None() + else + c18 = s.0 if p is Concat then - scrut19 = p.canBeEmpty_Concat_sp_10() - Nothing then - scrut19 = p.canBeEmpty_Nothing_sp_0() + scrut20 = startsWith_Concat_sp_10(p, c18) Concat then - scrut19 = p.canBeEmpty_Concat_sp_13() - new None() - else - if p is - Nothing then new None() + scrut20 = startsWith_Concat_sp_13(p, c18) + if scrut20 is + true then + if p is + Concat then + tmp56 = derive_Concat_sp_10(p, c18) + Concat then + tmp56 = derive_Concat_sp_13(p, c18) + tmp57 = s.slice(1) + tmp58 = acc + c18 + matchImpl(tmp56, tmp57, tmp58) else - c18 = s.0 if p is Concat then - scrut20 = p.startsWith_Concat_sp_10(c18) + scrut21 = canBeEmpty_Concat_sp_10(p) Concat then - scrut20 = p.startsWith_Concat_sp_13(c18) - if scrut20 is - true then - if p is - Concat then - tmp56 = p.derive_Concat_sp_10(c18) - Concat then - tmp56 = p.derive_Concat_sp_13(c18) - tmp57 = s.slice(1) - tmp58 = acc + c18 - matchImpl(tmp56, tmp57, tmp58) - else - if p is - Concat then - scrut21 = p.canBeEmpty_Concat_sp_10() - Concat then - scrut21 = p.canBeEmpty_Concat_sp_13() - new None() - private fun matchImpl_StagedRegExp_sp_6(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} - tmp55 = len(s) - scrut18 = ==(tmp55, 0) - if scrut18 is + scrut21 = canBeEmpty_Concat_sp_13(p) + new None() +fun matchImpl_StagedRegExp_sp_6(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) + if scrut18 is + true then + scrut19 = canBeEmpty_Concat_sp_14(p) + new None() + else + c18 = s.0 + scrut20 = startsWith_Concat_sp_14(p, c18) + if scrut20 is true then - scrut19 = p.canBeEmpty_Concat_sp_14() + tmp56 = derive_Concat_sp_14(p, c18) + tmp57 = s.slice(1) + tmp58 = "" + c18 + matchImpl_StagedRegExp_sp_7(tmp56, tmp57, tmp58) + else + scrut21 = canBeEmpty_Concat_sp_14(p) new None() +fun matchImpl_StagedRegExp_sp_7(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) + if scrut18 is + true then + if p is + Nothing then + scrut19 = canBeEmpty_Nothing_sp_0(p) + Nothing then + scrut19 = canBeEmpty_Nothing_sp_0(p) + Concat then + scrut19 = canBeEmpty_Concat_sp_21(p) + new None() + else + if p is + Nothing then new None() else c18 = s.0 - scrut20 = p.startsWith_Concat_sp_14(c18) + scrut20 = startsWith_Concat_sp_21(p, c18) if scrut20 is true then - tmp56 = p.derive_Concat_sp_14(c18) + tmp56 = derive_Concat_sp_21(p, c18) tmp57 = s.slice(1) - tmp58 = "" + c18 - matchImpl_StagedRegExp_sp_7(tmp56, tmp57, tmp58) + tmp58 = acc + c18 + matchImpl_StagedRegExp_sp_8(tmp56, tmp57, tmp58) else - scrut21 = p.canBeEmpty_Concat_sp_14() + scrut21 = canBeEmpty_Concat_sp_21(p) new None() - private fun matchImpl_StagedRegExp_sp_7(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} - tmp55 = len(s) - scrut18 = ==(tmp55, 0) - if scrut18 is - true then - if p is - Nothing then - scrut19 = p.canBeEmpty_Nothing_sp_0() - Nothing then - scrut19 = p.canBeEmpty_Nothing_sp_0() - Concat then - scrut19 = p.canBeEmpty_Concat_sp_21() - new None() +fun matchImpl_StagedRegExp_sp_8(p, s, acc) = + let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} + tmp55 = len(s) + scrut18 = ==(tmp55, 0) + if scrut18 is + true then + if p is + Nothing then + scrut19 = canBeEmpty_Nothing_sp_0(p) + Nothing then + scrut19 = canBeEmpty_Nothing_sp_0(p) + Concat then + scrut19 = canBeEmpty_Concat_sp_24(p) + new None() + else + if p is + Nothing then new None() else - if p is - Nothing then new None() + c18 = s.0 + scrut20 = startsWith_Concat_sp_24(p, c18) + if scrut20 is + true then + tmp56 = derive_Concat_sp_24(p, c18) + tmp57 = s.slice(1) + tmp58 = acc + c18 + matchImpl(tmp56, tmp57, tmp58) else - c18 = s.0 - scrut20 = p.startsWith_Concat_sp_21(c18) - if scrut20 is - true then - tmp56 = p.derive_Concat_sp_21(c18) - tmp57 = s.slice(1) - tmp58 = acc + c18 - matchImpl_StagedRegExp_sp_8(tmp56, tmp57, tmp58) - else - scrut21 = p.canBeEmpty_Concat_sp_21() - new None() - private fun matchImpl_StagedRegExp_sp_8(p, s, acc) = - let {scrut18, scrut19, c18, scrut20, scrut21, tmp55, tmp56, tmp57, tmp58} - tmp55 = len(s) - scrut18 = ==(tmp55, 0) - if scrut18 is + scrut21 = canBeEmpty_Concat_sp_24(p) + new None() +fun match_StagedRegExp_sp_0(p, s) = matchImpl_StagedRegExp_sp_1(p, s, "") +fun match_StagedRegExp_sp_1(p, s) = matchImpl_StagedRegExp_sp_3(p, s, "") +fun match_StagedRegExp_sp_2(p, s) = matchImpl_StagedRegExp_sp_6(p, s, "") +fun nTimes_StagedRegExp_sp_0(r, i) = + let {scrut17, tmp52, tmp53, obj_100, obj_101, tup_102, obj_103, obj_104, obj_105, obj_106, tup_107, obj_108, tup_109, obj_110, obj_111, obj_112, obj_113, obj_114, obj_115, tup_116, obj_117, obj_118, obj_119, tup_120, obj_121, obj_122, obj_123, obj_124, obj_125, obj_126, obj_127, obj_128, obj_129, tup_130, obj_131, obj_132, obj_133, obj_134, tup_135, obj_136, tup_137, obj_138, obj_139, obj_140, obj_141, obj_142, obj_143, tup_144, obj_145, obj_146, obj_147, tup_148, obj_149, obj_150, obj_151, obj_152, obj_153, obj_154, obj_155, obj_156} + scrut17 = false + tmp52 = 2 + obj_100 = new Exact("2") + obj_101 = new Exact("5") + tup_102 = ["0", "1", "2", "3", "4", "5"] + obj_103 = new In(tup_102) + obj_104 = new Concat(obj_101, obj_103) + obj_105 = new Concat(obj_100, obj_104) + obj_106 = new Exact("2") + tup_107 = ["0", "1", "2", "3", "4"] + obj_108 = new In(tup_107) + tup_109 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_110 = new In(tup_109) + obj_111 = new Concat(obj_108, obj_110) + obj_112 = new Concat(obj_106, obj_111) + obj_113 = new Exact("1") + obj_114 = new Empty() + obj_115 = new Union(obj_113, obj_114) + tup_116 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_117 = new In(tup_116) + obj_118 = new Empty() + obj_119 = new Union(obj_117, obj_118) + tup_120 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_121 = new In(tup_120) + obj_122 = new Concat(obj_119, obj_121) + obj_123 = new Concat(obj_115, obj_122) + obj_124 = new Union(obj_112, obj_123) + obj_125 = new Union(obj_105, obj_124) + obj_126 = new Exact(".") + obj_127 = new Concat(obj_125, obj_126) + obj_128 = new Exact("2") + obj_129 = new Exact("5") + tup_130 = ["0", "1", "2", "3", "4", "5"] + obj_131 = new In(tup_130) + obj_132 = new Concat(obj_129, obj_131) + obj_133 = new Concat(obj_128, obj_132) + obj_134 = new Exact("2") + tup_135 = ["0", "1", "2", "3", "4"] + obj_136 = new In(tup_135) + tup_137 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_138 = new In(tup_137) + obj_139 = new Concat(obj_136, obj_138) + obj_140 = new Concat(obj_134, obj_139) + obj_141 = new Exact("1") + obj_142 = new Empty() + obj_143 = new Union(obj_141, obj_142) + tup_144 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_145 = new In(tup_144) + obj_146 = new Empty() + obj_147 = new Union(obj_145, obj_146) + tup_148 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_149 = new In(tup_148) + obj_150 = new Concat(obj_147, obj_149) + obj_151 = new Concat(obj_143, obj_150) + obj_152 = new Union(obj_140, obj_151) + obj_153 = new Union(obj_133, obj_152) + obj_154 = new Exact(".") + obj_155 = new Concat(obj_153, obj_154) + obj_156 = new Concat(obj_127, obj_155) + tmp53 = obj_156 + new Concat(r, tmp53) +fun nTimes_StagedRegExp_sp_1(r, i) = + let {scrut17, tmp52, tmp53, obj_72, obj_73, tup_74, obj_75, obj_76, obj_77, obj_78, tup_79, obj_80, tup_81, obj_82, obj_83, obj_84, obj_85, obj_86, obj_87, tup_88, obj_89, obj_90, obj_91, tup_92, obj_93, obj_94, obj_95, obj_96, obj_97, obj_98, obj_99} + scrut17 = false + tmp52 = 1 + obj_72 = new Exact("2") + obj_73 = new Exact("5") + tup_74 = ["0", "1", "2", "3", "4", "5"] + obj_75 = new In(tup_74) + obj_76 = new Concat(obj_73, obj_75) + obj_77 = new Concat(obj_72, obj_76) + obj_78 = new Exact("2") + tup_79 = ["0", "1", "2", "3", "4"] + obj_80 = new In(tup_79) + tup_81 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_82 = new In(tup_81) + obj_83 = new Concat(obj_80, obj_82) + obj_84 = new Concat(obj_78, obj_83) + obj_85 = new Exact("1") + obj_86 = new Empty() + obj_87 = new Union(obj_85, obj_86) + tup_88 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_89 = new In(tup_88) + obj_90 = new Empty() + obj_91 = new Union(obj_89, obj_90) + tup_92 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + obj_93 = new In(tup_92) + obj_94 = new Concat(obj_91, obj_93) + obj_95 = new Concat(obj_87, obj_94) + obj_96 = new Union(obj_84, obj_95) + obj_97 = new Union(obj_77, obj_96) + obj_98 = new Exact(".") + obj_99 = new Concat(obj_97, obj_98) + tmp53 = obj_99 + new Concat(r, tmp53) +fun nTimes_StagedRegExp_sp_2(r, i) = + let {scrut17, tmp52, tmp53} + scrut17 = true + r +fun plus_StagedRegExp_sp_0(r) = + let {tmp54} + tmp54 = new Star(r) + new Concat(r, tmp54) +fun plus_StagedRegExp_sp_1(r) = + let {tmp54} + tmp54 = new Star(r) + new Concat(r, tmp54) +fun plus_StagedRegExp_sp_2(r) = + let {tmp54} + tmp54 = new Star(r) + new Concat(r, tmp54) +fun plus_StagedRegExp_sp_3(r) = + let {tmp54} + tmp54 = new Star(r) + new Concat(r, tmp54) +fun question_StagedRegExp_sp_0(r) = + let {tmp48} + tmp48 = new Empty() + new Union(r, tmp48) +fun question_StagedRegExp_sp_1(r) = + let {tmp48} + tmp48 = new Empty() + new Union(r, tmp48) +fun question_StagedRegExp_sp_2(r) = + let {tmp48} + tmp48 = new Empty() + new Union(r, tmp48) +fun question_StagedRegExp_sp_3(r) = + let {tmp48} + tmp48 = new Empty() + new Union(r, tmp48) +fun canBeEmpty_Nothing_sp_0(self) = false +fun derive_Nothing_sp_0(self, c) = + let {obj_244} + obj_244 = new Nothing() + obj_244 +fun normalize_Nothing_sp_0(self) = + let {obj_18} + obj_18 = new Nothing() + obj_18 +fun normalize_Nothing_sp_1(self) = self +fun startsWith_Nothing_sp_0(self, c) = false +fun canBeEmpty_Empty_sp_0(self) = true +fun derive_Empty_sp_0(self, c) = + let {obj_243} + obj_243 = new Nothing() + obj_243 +fun normalize_Empty_sp_0(self) = + let {obj_17} + obj_17 = new Empty() + obj_17 +fun startsWith_Empty_sp_0(self, c) = false +fun canBeEmpty_Exact_sp_0(self) = false +fun canBeEmpty_Exact_sp_1(self) = false +fun canBeEmpty_Exact_sp_2(self) = false +fun canBeEmpty_Exact_sp_3(self) = false +fun canBeEmpty_Exact_sp_4(self) = false +fun derive_Exact_sp_0(self, c) = + let {scrut2} + scrut2 = self.startsWith(c) + if scrut2 is + true then new Empty() + else new Nothing() +fun derive_Exact_sp_1(self, c) = + let {scrut2} + scrut2 = self.startsWith(c) + if scrut2 is + true then new Empty() + else new Nothing() +fun derive_Exact_sp_2(self, c) = + let {scrut2} + scrut2 = self.startsWith(c) + if scrut2 is + true then new Empty() + else new Nothing() +fun derive_Exact_sp_3(self, c) = + let {scrut2} + scrut2 = self.startsWith(c) + if scrut2 is + true then new Empty() + else new Nothing() +fun derive_Exact_sp_4(self, c) = + let {scrut2} + scrut2 = self.startsWith(c) + if scrut2 is + true then new Empty() + else new Nothing() +fun normalize_Exact_sp_0(self) = self +fun normalize_Exact_sp_1(self) = self +fun normalize_Exact_sp_2(self) = self +fun normalize_Exact_sp_3(self) = self +fun normalize_Exact_sp_4(self) = self +fun normalize_Exact_sp_5(self) = self +fun normalize_Exact_sp_6(self) = self +fun normalize_Exact_sp_7(self) = self +fun normalize_Exact_sp_8(self) = self +fun startsWith_Exact_sp_0(self, c) = ==("@", c) +fun startsWith_Exact_sp_1(self, c) = ==(":", c) +fun startsWith_Exact_sp_2(self, c) = ==("2", c) +fun startsWith_Exact_sp_3(self, c) = ==("1", c) +fun startsWith_Exact_sp_4(self, c) = ==(".", c) +fun canBeEmpty_Not_sp_0(self) = false +fun derive_Not_sp_0(self, c) = + let {scrut3} + scrut3 = self.startsWith(c) + if scrut3 is + true then new Empty() + else new Nothing() +fun normalize_Not_sp_0(self) = self +fun normalize_Not_sp_1(self) = self +fun startsWith_Not_sp_0(self, c) = + let {tmp5} + tmp5 = has_StagedRegExp_sp_2(self.chars, c) + not tmp5 +fun canBeEmpty_Union_sp_0(self) = false +fun canBeEmpty_Union_sp_1(self) = false +fun canBeEmpty_Union_sp_2(self) = true +fun canBeEmpty_Union_sp_3(self) = true +fun derive_Union_sp_0(self, c) = + let {tmp6, tmp7, tmp8} + tmp6 = derive_Concat_sp_17(self.p1, c) + tmp7 = derive_Union_sp_1(self.p2, c) + tmp8 = new Union.class(tmp6, tmp7) + normalize_Union_sp_12(tmp8) +fun derive_Union_sp_1(self, c) = + let {tmp6, tmp7, tmp8} + tmp6 = derive_Concat_sp_18(self.p1, c) + tmp7 = derive_Concat_sp_19(self.p2, c) + tmp8 = new Union.class(tmp6, tmp7) + normalize_Union_sp_11(tmp8) +fun derive_Union_sp_2(self, c) = + let {tmp6, tmp7, tmp8} + tmp6 = derive_Exact_sp_3(self.p1, c) + tmp7 = derive_Empty_sp_0(self.p2, c) + tmp8 = new Union.class(tmp6, tmp7) + normalize_Union_sp_7(tmp8) +fun derive_Union_sp_3(self, c) = + let {tmp6, tmp7, tmp8} + tmp6 = derive_In_sp_2(self.p1, c) + tmp7 = derive_Empty_sp_0(self.p2, c) + tmp8 = new Union.class(tmp6, tmp7) + normalize_Union_sp_7(tmp8) +fun flat_Union_sp_0(self) = + let {p1__, scrut4, p2__, scrut5, tmp10, tmp11} + scrut4 = self.p1 + if scrut4 is + Union then + tmp10 = self.p1.flat() + else + tmp10 = [self.p1] + p1__ = tmp10 + scrut5 = self.p2 + if scrut5 is + Union then + tmp11 = self.p2.flat() + else + tmp11 = [self.p2] + p2__ = tmp11 + concat(p1__, p2__) +fun normalize_Union_sp_0(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = self.p1.normalize() + p2__1 = self.p2.normalize() + if p1__1 is + Union then + tmp16 = flat_Union_sp_0(p1__1) + else + tmp16 = [p1__1] + arr11 = tmp16 + if p2__1 is + Union then + tmp17 = flat_Union_sp_0(p2__1) + else + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len(arr2) + tmp20 = len(arr2) + s2 = self.iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_1(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_Concat_sp_0(self.p1) + p2__1 = self.p2.normalize() + if p1__1 is + Union then + tmp16 = flat_Union_sp_0(p1__1) + else + tmp16 = [p1__1] + arr11 = tmp16 + if p2__1 is + Union then + tmp17 = flat_Union_sp_0(p2__1) + else + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len(arr2) + tmp20 = len(arr2) + s2 = self.iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_10(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_In_sp_5(self.p1) + p2__1 = normalize_Empty_sp_0(self.p2) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = 1 + tmp20 = 1 + s2 = self.iter(tmp18, arr2, 1, 1) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_11(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + if self.p1 is + Concat then + p1__1 = normalize_Concat_sp_33(self.p1) + Nothing then + p1__1 = normalize_Nothing_sp_0(self.p1) + p2__1 = self.p2.normalize() + tmp16 = [p1__1] + arr11 = tmp16 + if p2__1 is + Union then + tmp17 = flat_Union_sp_0(p2__1) + else + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len(arr2) + tmp20 = len(arr2) + s2 = self.iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_12(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + if self.p1 is + Concat then + p1__1 = normalize_Concat_sp_31(self.p1) + Nothing then + p1__1 = normalize_Nothing_sp_0(self.p1) + p2__1 = self.p2.normalize() + tmp16 = [p1__1] + arr11 = tmp16 + if p2__1 is + Union then + tmp17 = flat_Union_sp_0(p2__1) + else + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len(arr2) + tmp20 = len(arr2) + s2 = self.iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_13(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_Concat_sp_41(self.p1) + p2__1 = normalize_Union_sp_14(self.p2) + tmp16 = [p1__1] + arr11 = tmp16 + if p2__1 is + Union then + tmp17 = flat_Union_sp_0(p2__1) + else + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len(arr2) + tmp20 = len(arr2) + s2 = self.iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_14(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_Concat_sp_42(self.p1) + p2__1 = normalize_Concat_sp_43(self.p2) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_6(arr2) + tmp20 = len_StagedRegExp_sp_6(arr2) + s2 = self.iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_15(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_Exact_sp_8(self.p1) + p2__1 = normalize_Empty_sp_0(self.p2) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = 1 + tmp20 = 1 + s2 = self.iter(tmp18, arr2, 1, 1) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_16(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_Concat_sp_37(self.p1) + if self.p2 is + Empty then + p2__1 = normalize_Empty_sp_0(self.p2) + Nothing then + p2__1 = normalize_Nothing_sp_0(self.p2) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_5(arr2) + tmp20 = len_StagedRegExp_sp_5(arr2) + s2 = self.iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_17(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_Concat_sp_47(self.p1) + if self.p2 is + Nothing then + p2__1 = normalize_Nothing_sp_0(self.p2) + Exact then + p2__1 = normalize_Exact_sp_1(self.p2) + Nothing then + p2__1 = normalize_Nothing_sp_1(self.p2) + Concat then + p2__1 = normalize_Concat_sp_37(self.p2) + Concat then + p2__1 = normalize_Concat_sp_50(self.p2) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_7(arr2) + tmp20 = len_StagedRegExp_sp_7(arr2) + s2 = self.iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_2(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_Concat_sp_3(self.p1) + if self.p2 is + Concat then + p2__1 = normalize_Concat_sp_5(self.p2) + Nothing then + p2__1 = normalize_Nothing_sp_0(self.p2) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_0(arr2) + tmp20 = len_StagedRegExp_sp_0(arr2) + s2 = self.iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_3(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_Concat_sp_20(self.p1) + p2__1 = normalize_Empty_sp_0(self.p2) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = 1 + tmp20 = 1 + s2 = self.iter(tmp18, arr2, 1, 1) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_4(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_Concat_sp_21(self.p1) + p2__1 = normalize_Empty_sp_0(self.p2) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = 1 + tmp20 = 1 + s2 = self.iter(tmp18, arr2, 1, 1) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_5(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_Concat_sp_10(self.p1) + if self.p2 is + Concat then + p2__1 = normalize_Concat_sp_12(self.p2) + Nothing then + p2__1 = normalize_Nothing_sp_0(self.p2) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_2(arr2) + tmp20 = len_StagedRegExp_sp_2(arr2) + s2 = self.iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_6(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_Concat_sp_23(self.p1) + if self.p2 is + Nothing then + p2__1 = normalize_Nothing_sp_0(self.p2) + Concat then + p2__1 = normalize_Concat_sp_29(self.p2) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_3(arr2) + tmp20 = len_StagedRegExp_sp_3(arr2) + s2 = self.iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_7(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + if self.p1 is + Empty then + p1__1 = normalize_Empty_sp_0(self.p1) + Nothing then + p1__1 = normalize_Nothing_sp_0(self.p1) + p2__1 = normalize_Nothing_sp_0(self.p2) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = 1 + tmp20 = 1 + s2 = self.iter(tmp18, arr2, 1, 1) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_8(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_Concat_sp_34(self.p1) + if self.p2 is + Empty then + p2__1 = normalize_Empty_sp_0(self.p2) + Nothing then + p2__1 = normalize_Nothing_sp_0(self.p2) + tmp16 = [p1__1] + arr11 = tmp16 + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len_StagedRegExp_sp_5(arr2) + tmp20 = len_StagedRegExp_sp_5(arr2) + s2 = self.iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun normalize_Union_sp_9(self) = + let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} + p1__1 = normalize_Concat_sp_35(self.p1) + p2__1 = self.p2.normalize() + tmp16 = [p1__1] + arr11 = tmp16 + if p2__1 is + Union then + tmp17 = flat_Union_sp_0(p2__1) + else + tmp17 = [p2__1] + arr2 = tmp17 + tmp18 = new DedupSet(arr11) + tmp19 = len(arr2) + tmp20 = len(arr2) + s2 = self.iter(tmp18, arr2, tmp19, tmp20) + tmp21 = len(s2.arr) + tmp22 = len(s2.arr) + mkUnion(s2.arr, tmp21, tmp22) +fun startsWith_Union_sp_0(self, c) = + let {tmp26} + tmp26 = startsWith_Concat_sp_17(self.p1, c) + if tmp26 is + false then startsWith_Union_sp_1(self.p2, c) + else true +fun startsWith_Union_sp_1(self, c) = + let {tmp26} + tmp26 = startsWith_Concat_sp_18(self.p1, c) + if tmp26 is + false then startsWith_Concat_sp_19(self.p2, c) + else true +fun startsWith_Union_sp_2(self, c) = + let {tmp26} + tmp26 = startsWith_Exact_sp_3(self.p1, c) + if tmp26 is + false then startsWith_Empty_sp_0(self.p2, c) + else true +fun startsWith_Union_sp_3(self, c) = + let {tmp26} + tmp26 = startsWith_In_sp_2(self.p1, c) + if tmp26 is + false then startsWith_Empty_sp_0(self.p2, c) + else true +fun canBeEmpty_In_sp_0(self) = false +fun canBeEmpty_In_sp_1(self) = false +fun canBeEmpty_In_sp_2(self) = false +fun derive_In_sp_0(self, c) = + let {scrut7} + scrut7 = self.startsWith(c) + if scrut7 is + true then new Empty() + else new Nothing() +fun derive_In_sp_1(self, c) = + let {scrut7} + scrut7 = self.startsWith(c) + if scrut7 is + true then new Empty() + else new Nothing() +fun derive_In_sp_2(self, c) = + let {scrut7} + scrut7 = self.startsWith(c) + if scrut7 is + true then new Empty() + else new Nothing() +fun normalize_In_sp_0(self) = self +fun normalize_In_sp_1(self) = self +fun normalize_In_sp_2(self) = self +fun normalize_In_sp_3(self) = self +fun normalize_In_sp_4(self) = self +fun normalize_In_sp_5(self) = self +fun startsWith_In_sp_0(self, c) = has_StagedRegExp_sp_0(self.chars, c) +fun startsWith_In_sp_1(self, c) = has_StagedRegExp_sp_1(self.chars, c) +fun startsWith_In_sp_2(self, c) = has_StagedRegExp_sp_3(self.chars, c) +fun canBeEmpty_Concat_sp_0(self) = false +fun canBeEmpty_Concat_sp_1(self) = false +fun canBeEmpty_Concat_sp_10(self) = false +fun canBeEmpty_Concat_sp_11(self) = false +fun canBeEmpty_Concat_sp_12(self) = false +fun canBeEmpty_Concat_sp_13(self) = false +fun canBeEmpty_Concat_sp_14(self) = false +fun canBeEmpty_Concat_sp_15(self) = false +fun canBeEmpty_Concat_sp_16(self) = false +fun canBeEmpty_Concat_sp_17(self) = false +fun canBeEmpty_Concat_sp_18(self) = false +fun canBeEmpty_Concat_sp_19(self) = false +fun canBeEmpty_Concat_sp_2(self) = false +fun canBeEmpty_Concat_sp_20(self) = false +fun canBeEmpty_Concat_sp_21(self) = false +fun canBeEmpty_Concat_sp_22(self) = false +fun canBeEmpty_Concat_sp_23(self) = false +fun canBeEmpty_Concat_sp_24(self) = false +fun canBeEmpty_Concat_sp_25(self) = false +fun canBeEmpty_Concat_sp_26(self) = false +fun canBeEmpty_Concat_sp_3(self) = false +fun canBeEmpty_Concat_sp_4(self) = false +fun canBeEmpty_Concat_sp_5(self) = false +fun canBeEmpty_Concat_sp_6(self) = false +fun canBeEmpty_Concat_sp_7(self) = false +fun canBeEmpty_Concat_sp_8(self) = false +fun canBeEmpty_Concat_sp_9(self) = false +fun derive_Concat_sp_0(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Concat_sp_1(self.p1, c) + scrut8 = canBeEmpty_Concat_sp_1(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_3(tmp30) +fun derive_Concat_sp_1(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_In_sp_0(self.p1, c) + scrut8 = canBeEmpty_In_sp_0(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_2(tmp30) +fun derive_Concat_sp_10(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Concat_sp_11(self.p1, c) + scrut8 = canBeEmpty_Concat_sp_11(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_27(tmp30) +fun derive_Concat_sp_11(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Concat_sp_12(self.p1, c) + scrut8 = canBeEmpty_Concat_sp_12(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_26(tmp30) +fun derive_Concat_sp_12(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Not_sp_0(self.p1, c) + scrut8 = canBeEmpty_Not_sp_0(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_25(tmp30) +fun derive_Concat_sp_13(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = self.p1.derive(c) + scrut8 = self.p1.canBeEmpty() + if scrut8 is + true then + tmp27 = new Concat.class(p1__2, self.p2) + tmp28 = derive_Concat_sp_10(self.p2, c) + tmp29 = new Union(tmp27, tmp28) + normalize_Union_sp_6(tmp29) + else + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_23(tmp30) +fun derive_Concat_sp_14(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Concat_sp_15(self.p1, c) + scrut8 = canBeEmpty_Concat_sp_15(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_44(tmp30) +fun derive_Concat_sp_15(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Concat_sp_16(self.p1, c) + scrut8 = canBeEmpty_Concat_sp_16(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_38(tmp30) +fun derive_Concat_sp_16(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Union_sp_0(self.p1, c) + scrut8 = canBeEmpty_Union_sp_0(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_37(tmp30) +fun derive_Concat_sp_17(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Exact_sp_2(self.p1, c) + scrut8 = canBeEmpty_Exact_sp_2(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_30(tmp30) +fun derive_Concat_sp_18(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Exact_sp_2(self.p1, c) + scrut8 = canBeEmpty_Exact_sp_2(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_32(tmp30) +fun derive_Concat_sp_19(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Union_sp_2(self.p1, c) + scrut8 = canBeEmpty_Union_sp_2(self.p1) + tmp27 = new Concat.class(p1__2, self.p2) + tmp28 = derive_Concat_sp_20(self.p2, c) + tmp29 = new Union(tmp27, tmp28) + normalize_Union_sp_9(tmp29) +fun derive_Concat_sp_2(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Star_sp_0(self.p1, c) + scrut8 = canBeEmpty_Star_sp_0(self.p1) + tmp27 = new Concat.class(p1__2, self.p2) + tmp28 = derive_Concat_sp_3(self.p2, c) + tmp29 = new Union(tmp27, tmp28) + normalize_Union_sp_2(tmp29) +fun derive_Concat_sp_20(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Union_sp_3(self.p1, c) + scrut8 = canBeEmpty_Union_sp_3(self.p1) + tmp27 = new Concat.class(p1__2, self.p2) + tmp28 = derive_In_sp_2(self.p2, c) + tmp29 = new Union(tmp27, tmp28) + normalize_Union_sp_8(tmp29) +fun derive_Concat_sp_21(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Concat_sp_22(self.p1, c) + scrut8 = canBeEmpty_Concat_sp_22(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_49(tmp30) +fun derive_Concat_sp_22(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + if self.p1 is + Exact then + p1__2 = derive_Exact_sp_4(self.p1, c) + Concat then + p1__2 = derive_Concat_sp_23(self.p1, c) + if self.p1 is + Exact then + scrut8 = canBeEmpty_Exact_sp_4(self.p1) + Concat then + scrut8 = canBeEmpty_Concat_sp_23(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_47(tmp30) +fun derive_Concat_sp_23(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = self.p1.derive(c) + scrut8 = self.p1.canBeEmpty() + if scrut8 is + true then + tmp27 = new Concat.class(p1__2, self.p2) + tmp28 = derive_Exact_sp_4(self.p2, c) + tmp29 = new Union(tmp27, tmp28) + normalize_Union_sp_16(tmp29) + else + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_37(tmp30) +fun derive_Concat_sp_24(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + if self.p1 is + Concat then + p1__2 = derive_Concat_sp_25(self.p1, c) + Concat then + p1__2 = derive_Concat_sp_26(self.p1, c) + if self.p1 is + Concat then + scrut8 = canBeEmpty_Concat_sp_25(self.p1) + Concat then + scrut8 = canBeEmpty_Concat_sp_26(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_0(tmp30) +fun derive_Concat_sp_25(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + if self.p1 is + Exact then + p1__2 = derive_Exact_sp_4(self.p1, c) + Concat then + p1__2 = derive_Concat_sp_23(self.p1, c) + if self.p1 is + Exact then + scrut8 = canBeEmpty_Exact_sp_4(self.p1) + Concat then + scrut8 = canBeEmpty_Concat_sp_23(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_50(tmp30) +fun derive_Concat_sp_26(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = self.p1.derive(c) + scrut8 = self.p1.canBeEmpty() + if scrut8 is + true then + tmp27 = new Concat.class(p1__2, self.p2) + if self.p2 is + Nothing then + tmp28 = derive_Nothing_sp_0(self.p2, c) + Nothing then + tmp28 = derive_Nothing_sp_0(self.p2, c) + Concat then + tmp28 = derive_Concat_sp_25(self.p2, c) + tmp29 = new Union(tmp27, tmp28) + normalize_Union_sp_17(tmp29) + else + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_47(tmp30) +fun derive_Concat_sp_3(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Exact_sp_0(self.p1, c) + scrut8 = canBeEmpty_Exact_sp_0(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_8(tmp30) +fun derive_Concat_sp_4(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Concat_sp_5(self.p1, c) + scrut8 = canBeEmpty_Concat_sp_5(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_13(tmp30) +fun derive_Concat_sp_5(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Concat_sp_6(self.p1, c) + scrut8 = canBeEmpty_Concat_sp_6(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_10(tmp30) +fun derive_Concat_sp_6(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_In_sp_1(self.p1, c) + scrut8 = canBeEmpty_In_sp_1(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_9(tmp30) +fun derive_Concat_sp_7(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Concat_sp_8(self.p1, c) + scrut8 = canBeEmpty_Concat_sp_8(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_23(tmp30) +fun derive_Concat_sp_8(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Star_sp_1(self.p1, c) + scrut8 = canBeEmpty_Star_sp_1(self.p1) + tmp27 = new Concat.class(p1__2, self.p2) + tmp28 = derive_Concat_sp_9(self.p2, c) + tmp29 = new Union(tmp27, tmp28) + normalize_Union_sp_5(tmp29) +fun derive_Concat_sp_9(self, c) = + let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} + p1__2 = derive_Exact_sp_1(self.p1, c) + scrut8 = canBeEmpty_Exact_sp_1(self.p1) + tmp30 = new Concat.class(p1__2, self.p2) + normalize_Concat_sp_22(tmp30) +fun normalize_Concat_sp_0(self) = + let {p1__3, tmp31} + p1__3 = self.p1.normalize() + if p1__3 is + Empty then self.p2.normalize() + Nothing then p1__3 + else + tmp31 = self.p2.normalize() + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_1(self) = + let {p1__3, tmp31} + p1__3 = self.p1.normalize() + if p1__3 is + Empty then normalize_Star_sp_0(self.p2) + Nothing then p1__3 + else + tmp31 = normalize_Star_sp_0(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_10(self) = + let {p1__3, tmp31} + if self.p1 is + Star then + p1__3 = normalize_Star_sp_2(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Nothing then p1__3 + else + tmp31 = normalize_Concat_sp_11(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_11(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_2(self.p1) + tmp31 = normalize_Concat_sp_12(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_12(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_3(self.p1) + tmp31 = normalize_Exact_sp_3(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_13(self) = + let {p1__3, tmp31} + if self.p1 is + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + Concat then + p1__3 = normalize_Concat_sp_14(self.p1) + if p1__3 is + Nothing then p1__3 + else + tmp31 = normalize_Concat_sp_15(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_14(self) = + let {p1__3, tmp31} + p1__3 = normalize_Star_sp_2(self.p1) + tmp31 = normalize_Concat_sp_11(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_15(self) = + let {p1__3, tmp31} + p1__3 = normalize_Concat_sp_16(self.p1) + tmp31 = normalize_Concat_sp_19(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_16(self) = + let {p1__3, tmp31} + p1__3 = normalize_Concat_sp_17(self.p1) + tmp31 = normalize_Concat_sp_18(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_17(self) = + let {p1__3, tmp31} + p1__3 = normalize_Not_sp_0(self.p1) + tmp31 = normalize_Star_sp_3(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_18(self) = + let {p1__3, tmp31} + p1__3 = normalize_Not_sp_1(self.p1) + tmp31 = normalize_Star_sp_4(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_19(self) = + let {p1__3, tmp31} + p1__3 = normalize_Union_sp_3(self.p1) + if p1__3 is + Empty then normalize_Union_sp_4(self.p2) + Nothing then p1__3 + else + tmp31 = normalize_Union_sp_4(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_2(self) = + let {p1__3, tmp31} + if self.p1 is + Empty then + p1__3 = normalize_Empty_sp_0(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Empty then normalize_Star_sp_1(self.p2) + Nothing then p1__3 +fun normalize_Concat_sp_20(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_4(self.p1) + tmp31 = normalize_Star_sp_5(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_21(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_5(self.p1) + tmp31 = normalize_Star_sp_5(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_22(self) = + let {p1__3, tmp31} + if self.p1 is + Empty then + p1__3 = normalize_Empty_sp_0(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Empty then normalize_Concat_sp_12(self.p2) + Nothing then p1__3 +fun normalize_Concat_sp_23(self) = + let {p1__3, tmp31} + p1__3 = self.p1.normalize() + if p1__3 is + Empty then normalize_Concat_sp_24(self.p2) + Nothing then p1__3 + else + tmp31 = normalize_Concat_sp_24(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_24(self) = + let {p1__3, tmp31} + p1__3 = normalize_Concat_sp_16(self.p1) + tmp31 = self.p2.normalize() + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_25(self) = + let {p1__3, tmp31} + if self.p1 is + Empty then + p1__3 = normalize_Empty_sp_0(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Empty then normalize_Star_sp_3(self.p2) + Nothing then p1__3 +fun normalize_Concat_sp_26(self) = + let {p1__3, tmp31} + if self.p1 is + Star then + p1__3 = normalize_Star_sp_3(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Nothing then p1__3 + else + tmp31 = normalize_Concat_sp_18(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_27(self) = + let {p1__3, tmp31} + if self.p1 is + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + Concat then + p1__3 = normalize_Concat_sp_28(self.p1) + if p1__3 is + Nothing then p1__3 + else + tmp31 = self.p2.normalize() + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_28(self) = + let {p1__3, tmp31} + p1__3 = normalize_Star_sp_3(self.p1) + tmp31 = normalize_Concat_sp_18(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_29(self) = + let {p1__3, tmp31} + p1__3 = normalize_Concat_sp_28(self.p1) + tmp31 = self.p2.normalize() + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_3(self) = + let {p1__3, tmp31} + if self.p1 is + Star then + p1__3 = normalize_Star_sp_1(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Nothing then p1__3 + else + tmp31 = normalize_Concat_sp_4(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_30(self) = + let {p1__3, tmp31} + if self.p1 is + Empty then + p1__3 = normalize_Empty_sp_0(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Empty then normalize_Concat_sp_31(self.p2) + Nothing then p1__3 +fun normalize_Concat_sp_31(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_6(self.p1) + tmp31 = normalize_In_sp_3(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_32(self) = + let {p1__3, tmp31} + if self.p1 is + Empty then + p1__3 = normalize_Empty_sp_0(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Empty then normalize_Concat_sp_33(self.p2) + Nothing then p1__3 +fun normalize_Concat_sp_33(self) = + let {p1__3, tmp31} + p1__3 = normalize_In_sp_4(self.p1) + tmp31 = normalize_In_sp_5(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_34(self) = + let {p1__3, tmp31} + p1__3 = self.p1.normalize() + if p1__3 is + Empty then normalize_In_sp_5(self.p2) + Nothing then p1__3 + else + tmp31 = normalize_In_sp_5(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_35(self) = + let {p1__3, tmp31} + p1__3 = self.p1.normalize() + if p1__3 is + Empty then normalize_Concat_sp_36(self.p2) + Nothing then p1__3 + else + tmp31 = normalize_Concat_sp_36(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_36(self) = + let {p1__3, tmp31} + p1__3 = normalize_Union_sp_10(self.p1) + if p1__3 is + Empty then normalize_In_sp_5(self.p2) + Nothing then p1__3 + else + tmp31 = normalize_In_sp_5(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_37(self) = + let {p1__3, tmp31} + p1__3 = self.p1.normalize() + if p1__3 is + Empty then normalize_Exact_sp_1(self.p2) + Nothing then p1__3 + else + tmp31 = normalize_Exact_sp_1(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_38(self) = + let {p1__3, tmp31} + if self.p1 is + Exact then + p1__3 = normalize_Exact_sp_1(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + Concat then + p1__3 = normalize_Concat_sp_37(self.p1) + if p1__3 is + Nothing then p1__3 + else + tmp31 = normalize_Concat_sp_39(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_39(self) = + let {p1__3, tmp31} + p1__3 = normalize_Concat_sp_40(self.p1) + if p1__3 is + Nothing then p1__3 + else + tmp31 = normalize_Concat_sp_40(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_4(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_0(self.p1) + tmp31 = normalize_Concat_sp_5(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_40(self) = + let {p1__3, tmp31} + p1__3 = normalize_Union_sp_13(self.p1) + if p1__3 is + Empty then normalize_Exact_sp_1(self.p2) + Nothing then p1__3 + else + tmp31 = normalize_Exact_sp_1(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_41(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_7(self.p1) + tmp31 = normalize_Concat_sp_31(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_42(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_7(self.p1) + tmp31 = normalize_Concat_sp_33(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_43(self) = + let {p1__3, tmp31} + p1__3 = normalize_Union_sp_15(self.p1) + if p1__3 is + Empty then normalize_Concat_sp_36(self.p2) + Nothing then p1__3 + else + tmp31 = normalize_Concat_sp_36(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_44(self) = + let {p1__3, tmp31} + if self.p1 is + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + Concat then + p1__3 = normalize_Concat_sp_45(self.p1) + if p1__3 is + Nothing then p1__3 + else + tmp31 = normalize_Union_sp_13(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_45(self) = + let {p1__3, tmp31} + if self.p1 is + Exact then + p1__3 = normalize_Exact_sp_1(self.p1) + Concat then + p1__3 = normalize_Concat_sp_37(self.p1) + if p1__3 is + Nothing then p1__3 + else + if self.p2 is + Nothing then + tmp31 = normalize_Nothing_sp_0(self.p2) + Concat then + tmp31 = normalize_Concat_sp_46(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_46(self) = + let {p1__3, tmp31} + if self.p1 is + Exact then + p1__3 = normalize_Exact_sp_1(self.p1) + Concat then + p1__3 = normalize_Concat_sp_37(self.p1) + if p1__3 is + Nothing then p1__3 + else + if self.p2 is + Exact then + tmp31 = normalize_Exact_sp_1(self.p2) + Nothing then + tmp31 = normalize_Nothing_sp_0(self.p2) + Concat then + tmp31 = normalize_Concat_sp_37(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_47(self) = + let {p1__3, tmp31} + p1__3 = self.p1.normalize() + if p1__3 is + Empty then + if self.p2 is + Nothing then normalize_Nothing_sp_0(self.p2) + Nothing then normalize_Nothing_sp_0(self.p2) + Concat then normalize_Concat_sp_48(self.p2) + Nothing then p1__3 + else + if self.p2 is + Nothing then + tmp31 = normalize_Nothing_sp_0(self.p2) + Nothing then + tmp31 = normalize_Nothing_sp_0(self.p2) + Concat then + tmp31 = normalize_Concat_sp_48(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_48(self) = + let {p1__3, tmp31} + if self.p1 is + Exact then + p1__3 = normalize_Exact_sp_1(self.p1) + Concat then + p1__3 = normalize_Concat_sp_37(self.p1) + if p1__3 is + Nothing then p1__3 + else + if self.p2 is + Exact then + tmp31 = normalize_Exact_sp_1(self.p2) + Nothing then + tmp31 = normalize_Nothing_sp_0(self.p2) + Nothing then + tmp31 = normalize_Nothing_sp_0(self.p2) + Concat then + tmp31 = normalize_Concat_sp_37(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_49(self) = + let {p1__3, tmp31} + if self.p1 is + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + Concat then + p1__3 = normalize_Concat_sp_48(self.p1) + Concat then + p1__3 = normalize_Concat_sp_47(self.p1) + if p1__3 is + Nothing then p1__3 + else + tmp31 = self.p2.normalize() + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_5(self) = + let {p1__3, tmp31} + p1__3 = normalize_Concat_sp_6(self.p1) + tmp31 = normalize_Concat_sp_7(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_50(self) = + let {p1__3, tmp31} + p1__3 = self.p1.normalize() + if p1__3 is + Empty then + if self.p2 is + Exact then normalize_Exact_sp_1(self.p2) + Nothing then normalize_Nothing_sp_0(self.p2) + Nothing then normalize_Nothing_sp_0(self.p2) + Concat then normalize_Concat_sp_37(self.p2) + Nothing then p1__3 + else + if self.p2 is + Exact then + tmp31 = normalize_Exact_sp_1(self.p2) + Nothing then + tmp31 = normalize_Nothing_sp_0(self.p2) + Nothing then + tmp31 = normalize_Nothing_sp_0(self.p2) + Concat then + tmp31 = normalize_Concat_sp_37(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_6(self) = + let {p1__3, tmp31} + p1__3 = normalize_In_sp_0(self.p1) + tmp31 = normalize_Star_sp_1(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_7(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_1(self.p1) + tmp31 = normalize_Concat_sp_6(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_8(self) = + let {p1__3, tmp31} + if self.p1 is + Empty then + p1__3 = normalize_Empty_sp_0(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Empty then normalize_Concat_sp_5(self.p2) + Nothing then p1__3 +fun normalize_Concat_sp_9(self) = + let {p1__3, tmp31} + if self.p1 is + Empty then + p1__3 = normalize_Empty_sp_0(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Empty then normalize_Star_sp_2(self.p2) + Nothing then p1__3 +fun startsWith_Concat_sp_0(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Concat_sp_1(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Concat_sp_1(self.p1) + false + else true +fun startsWith_Concat_sp_1(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_In_sp_0(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_In_sp_0(self.p1) + false + else true +fun startsWith_Concat_sp_10(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Concat_sp_11(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Concat_sp_11(self.p1) + false + else true +fun startsWith_Concat_sp_11(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Concat_sp_12(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Concat_sp_12(self.p1) + false + else true +fun startsWith_Concat_sp_12(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Not_sp_0(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Not_sp_0(self.p1) + false + else true +fun startsWith_Concat_sp_13(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = self.p1.startsWith(c) + if tmp32 is + false then + scrut13 = self.p1.canBeEmpty() + if scrut13 is true then - if p is + scrut14 = startsWith_Concat_sp_10(self.p2, c) + if scrut14 is + true then true + else false + else false + else true +fun startsWith_Concat_sp_14(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Concat_sp_15(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Concat_sp_15(self.p1) + false + else true +fun startsWith_Concat_sp_15(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Concat_sp_16(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Concat_sp_16(self.p1) + false + else true +fun startsWith_Concat_sp_16(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Union_sp_0(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Union_sp_0(self.p1) + false + else true +fun startsWith_Concat_sp_17(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Exact_sp_2(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Exact_sp_2(self.p1) + false + else true +fun startsWith_Concat_sp_18(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Exact_sp_2(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Exact_sp_2(self.p1) + false + else true +fun startsWith_Concat_sp_19(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Union_sp_2(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Union_sp_2(self.p1) + scrut14 = startsWith_Concat_sp_20(self.p2, c) + if scrut14 is + true then true + else false + else true +fun startsWith_Concat_sp_2(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Star_sp_0(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Star_sp_0(self.p1) + scrut14 = startsWith_Concat_sp_3(self.p2, c) + if scrut14 is + true then true + else false + else true +fun startsWith_Concat_sp_20(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Union_sp_3(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Union_sp_3(self.p1) + scrut14 = startsWith_In_sp_2(self.p2, c) + if scrut14 is + true then true + else false + else true +fun startsWith_Concat_sp_21(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Concat_sp_22(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Concat_sp_22(self.p1) + false + else true +fun startsWith_Concat_sp_22(self, c) = + let {scrut13, scrut14, tmp32} + if self.p1 is + Exact then + tmp32 = startsWith_Exact_sp_4(self.p1, c) + Concat then + tmp32 = startsWith_Concat_sp_23(self.p1, c) + if tmp32 is + false then + if self.p1 is + Exact then + scrut13 = canBeEmpty_Exact_sp_4(self.p1) + Concat then + scrut13 = canBeEmpty_Concat_sp_23(self.p1) + false + else true +fun startsWith_Concat_sp_23(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = self.p1.startsWith(c) + if tmp32 is + false then + scrut13 = self.p1.canBeEmpty() + if scrut13 is + true then + scrut14 = startsWith_Exact_sp_4(self.p2, c) + if scrut14 is + true then true + else false + else false + else true +fun startsWith_Concat_sp_24(self, c) = + let {scrut13, scrut14, tmp32} + if self.p1 is + Concat then + tmp32 = startsWith_Concat_sp_25(self.p1, c) + Concat then + tmp32 = startsWith_Concat_sp_26(self.p1, c) + if tmp32 is + false then + if self.p1 is + Concat then + scrut13 = canBeEmpty_Concat_sp_25(self.p1) + Concat then + scrut13 = canBeEmpty_Concat_sp_26(self.p1) + false + else true +fun startsWith_Concat_sp_25(self, c) = + let {scrut13, scrut14, tmp32} + if self.p1 is + Exact then + tmp32 = startsWith_Exact_sp_4(self.p1, c) + Concat then + tmp32 = startsWith_Concat_sp_23(self.p1, c) + if tmp32 is + false then + if self.p1 is + Exact then + scrut13 = canBeEmpty_Exact_sp_4(self.p1) + Concat then + scrut13 = canBeEmpty_Concat_sp_23(self.p1) + false + else true +fun startsWith_Concat_sp_26(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = self.p1.startsWith(c) + if tmp32 is + false then + scrut13 = self.p1.canBeEmpty() + if scrut13 is + true then + if self.p2 is Nothing then - scrut19 = p.canBeEmpty_Nothing_sp_0() + scrut14 = startsWith_Nothing_sp_0(self.p2, c) Nothing then - scrut19 = p.canBeEmpty_Nothing_sp_0() + scrut14 = startsWith_Nothing_sp_0(self.p2, c) Concat then - scrut19 = p.canBeEmpty_Concat_sp_24() - new None() - else - if p is - Nothing then new None() - else - c18 = s.0 - scrut20 = p.startsWith_Concat_sp_24(c18) - if scrut20 is - true then - tmp56 = p.derive_Concat_sp_24(c18) - tmp57 = s.slice(1) - tmp58 = acc + c18 - matchImpl(tmp56, tmp57, tmp58) - else - scrut21 = p.canBeEmpty_Concat_sp_24() - new None() - private fun match_StagedRegExp_sp_0(p, s) = matchImpl_StagedRegExp_sp_1(p, s, "") - private fun match_StagedRegExp_sp_1(p, s) = matchImpl_StagedRegExp_sp_3(p, s, "") - private fun match_StagedRegExp_sp_2(p, s) = matchImpl_StagedRegExp_sp_6(p, s, "") - private fun nTimes_StagedRegExp_sp_0(r, i) = - let {scrut17, tmp52, tmp53, obj_100, obj_101, tup_102, obj_103, obj_104, obj_105, obj_106, tup_107, obj_108, tup_109, obj_110, obj_111, obj_112, obj_113, obj_114, obj_115, tup_116, obj_117, obj_118, obj_119, tup_120, obj_121, obj_122, obj_123, obj_124, obj_125, obj_126, obj_127, obj_128, obj_129, tup_130, obj_131, obj_132, obj_133, obj_134, tup_135, obj_136, tup_137, obj_138, obj_139, obj_140, obj_141, obj_142, obj_143, tup_144, obj_145, obj_146, obj_147, tup_148, obj_149, obj_150, obj_151, obj_152, obj_153, obj_154, obj_155, obj_156} - scrut17 = false - tmp52 = 2 - obj_100 = new Exact("2") - obj_101 = new Exact("5") - tup_102 = ["0", "1", "2", "3", "4", "5"] - obj_103 = new In(tup_102) - obj_104 = new Concat(obj_101, obj_103) - obj_105 = new Concat(obj_100, obj_104) - obj_106 = new Exact("2") - tup_107 = ["0", "1", "2", "3", "4"] - obj_108 = new In(tup_107) - tup_109 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_110 = new In(tup_109) - obj_111 = new Concat(obj_108, obj_110) - obj_112 = new Concat(obj_106, obj_111) - obj_113 = new Exact("1") - obj_114 = new Empty() - obj_115 = new Union(obj_113, obj_114) - tup_116 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_117 = new In(tup_116) - obj_118 = new Empty() - obj_119 = new Union(obj_117, obj_118) - tup_120 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_121 = new In(tup_120) - obj_122 = new Concat(obj_119, obj_121) - obj_123 = new Concat(obj_115, obj_122) - obj_124 = new Union(obj_112, obj_123) - obj_125 = new Union(obj_105, obj_124) - obj_126 = new Exact(".") - obj_127 = new Concat(obj_125, obj_126) - obj_128 = new Exact("2") - obj_129 = new Exact("5") - tup_130 = ["0", "1", "2", "3", "4", "5"] - obj_131 = new In(tup_130) - obj_132 = new Concat(obj_129, obj_131) - obj_133 = new Concat(obj_128, obj_132) - obj_134 = new Exact("2") - tup_135 = ["0", "1", "2", "3", "4"] - obj_136 = new In(tup_135) - tup_137 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_138 = new In(tup_137) - obj_139 = new Concat(obj_136, obj_138) - obj_140 = new Concat(obj_134, obj_139) - obj_141 = new Exact("1") - obj_142 = new Empty() - obj_143 = new Union(obj_141, obj_142) - tup_144 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_145 = new In(tup_144) - obj_146 = new Empty() - obj_147 = new Union(obj_145, obj_146) - tup_148 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_149 = new In(tup_148) - obj_150 = new Concat(obj_147, obj_149) - obj_151 = new Concat(obj_143, obj_150) - obj_152 = new Union(obj_140, obj_151) - obj_153 = new Union(obj_133, obj_152) - obj_154 = new Exact(".") - obj_155 = new Concat(obj_153, obj_154) - obj_156 = new Concat(obj_127, obj_155) - tmp53 = obj_156 - new Concat(r, tmp53) - private fun nTimes_StagedRegExp_sp_1(r, i) = - let {scrut17, tmp52, tmp53, obj_72, obj_73, tup_74, obj_75, obj_76, obj_77, obj_78, tup_79, obj_80, tup_81, obj_82, obj_83, obj_84, obj_85, obj_86, obj_87, tup_88, obj_89, obj_90, obj_91, tup_92, obj_93, obj_94, obj_95, obj_96, obj_97, obj_98, obj_99} - scrut17 = false - tmp52 = 1 - obj_72 = new Exact("2") - obj_73 = new Exact("5") - tup_74 = ["0", "1", "2", "3", "4", "5"] - obj_75 = new In(tup_74) - obj_76 = new Concat(obj_73, obj_75) - obj_77 = new Concat(obj_72, obj_76) - obj_78 = new Exact("2") - tup_79 = ["0", "1", "2", "3", "4"] - obj_80 = new In(tup_79) - tup_81 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_82 = new In(tup_81) - obj_83 = new Concat(obj_80, obj_82) - obj_84 = new Concat(obj_78, obj_83) - obj_85 = new Exact("1") - obj_86 = new Empty() - obj_87 = new Union(obj_85, obj_86) - tup_88 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_89 = new In(tup_88) - obj_90 = new Empty() - obj_91 = new Union(obj_89, obj_90) - tup_92 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_93 = new In(tup_92) - obj_94 = new Concat(obj_91, obj_93) - obj_95 = new Concat(obj_87, obj_94) - obj_96 = new Union(obj_84, obj_95) - obj_97 = new Union(obj_77, obj_96) - obj_98 = new Exact(".") - obj_99 = new Concat(obj_97, obj_98) - tmp53 = obj_99 - new Concat(r, tmp53) - private fun nTimes_StagedRegExp_sp_2(r, i) = - let {scrut17, tmp52, tmp53} - scrut17 = true - r - private fun plus_StagedRegExp_sp_0(r) = - let {tmp54} - tmp54 = new Star(r) - new Concat(r, tmp54) - private fun plus_StagedRegExp_sp_1(r) = - let {tmp54} - tmp54 = new Star(r) - new Concat(r, tmp54) - private fun plus_StagedRegExp_sp_2(r) = - let {tmp54} - tmp54 = new Star(r) - new Concat(r, tmp54) - private fun plus_StagedRegExp_sp_3(r) = - let {tmp54} - tmp54 = new Star(r) - new Concat(r, tmp54) - private fun question_StagedRegExp_sp_0(r) = - let {tmp48} - tmp48 = new Empty() - new Union(r, tmp48) - private fun question_StagedRegExp_sp_1(r) = - let {tmp48} - tmp48 = new Empty() - new Union(r, tmp48) - private fun question_StagedRegExp_sp_2(r) = - let {tmp48} - tmp48 = new Empty() - new Union(r, tmp48) - private fun question_StagedRegExp_sp_3(r) = - let {tmp48} - tmp48 = new Empty() - new Union(r, tmp48) \ No newline at end of file + scrut14 = startsWith_Concat_sp_25(self.p2, c) + if scrut14 is + true then true + else false + else false + else true +fun startsWith_Concat_sp_3(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Exact_sp_0(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Exact_sp_0(self.p1) + false + else true +fun startsWith_Concat_sp_4(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Concat_sp_5(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Concat_sp_5(self.p1) + false + else true +fun startsWith_Concat_sp_5(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Concat_sp_6(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Concat_sp_6(self.p1) + false + else true +fun startsWith_Concat_sp_6(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_In_sp_1(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_In_sp_1(self.p1) + false + else true +fun startsWith_Concat_sp_7(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Concat_sp_8(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Concat_sp_8(self.p1) + false + else true +fun startsWith_Concat_sp_8(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Star_sp_1(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Star_sp_1(self.p1) + scrut14 = startsWith_Concat_sp_9(self.p2, c) + if scrut14 is + true then true + else false + else true +fun startsWith_Concat_sp_9(self, c) = + let {scrut13, scrut14, tmp32} + tmp32 = startsWith_Exact_sp_1(self.p1, c) + if tmp32 is + false then + scrut13 = canBeEmpty_Exact_sp_1(self.p1) + false + else true +fun canBeEmpty_Star_sp_0(self) = true +fun canBeEmpty_Star_sp_1(self) = true +fun derive_Star_sp_0(self, c) = + let {tmp33, tmp34, tmp35} + tmp33 = derive_In_sp_0(self.p, c) + tmp34 = new Star.class(self.p) + tmp35 = new Concat(tmp33, tmp34) + normalize_Concat_sp_2(tmp35) +fun derive_Star_sp_1(self, c) = + let {tmp33, tmp34, tmp35} + tmp33 = derive_In_sp_1(self.p, c) + tmp34 = new Star.class(self.p) + tmp35 = new Concat(tmp33, tmp34) + normalize_Concat_sp_9(tmp35) +fun normalize_Star_sp_0(self) = + let {tmp36} + tmp36 = self.p.normalize() + new Star.class(tmp36) +fun normalize_Star_sp_1(self) = + let {tmp36} + tmp36 = normalize_In_sp_0(self.p) + new Star.class(tmp36) +fun normalize_Star_sp_2(self) = + let {tmp36} + tmp36 = normalize_In_sp_1(self.p) + new Star.class(tmp36) +fun normalize_Star_sp_3(self) = + let {tmp36} + tmp36 = normalize_Not_sp_0(self.p) + new Star.class(tmp36) +fun normalize_Star_sp_4(self) = + let {tmp36} + tmp36 = normalize_Not_sp_1(self.p) + new Star.class(tmp36) +fun normalize_Star_sp_5(self) = + let {tmp36} + tmp36 = normalize_In_sp_2(self.p) + new Star.class(tmp36) +fun startsWith_Star_sp_0(self, c) = startsWith_In_sp_0(self.p, c) +fun startsWith_Star_sp_1(self, c) = startsWith_In_sp_1(self.p, c) \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls index dc0364d210..41ddf4bf73 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls @@ -154,3836 +154,3837 @@ module Transform3D with tmp21 = *(r, c) tmp22 = Transform3D__Legacy."Mx$Transform3D".init(tmp21, 0) new Matrix(tmp22, r, c) - private fun ident_Transform3D_sp_0(w) = - let {m3, tup_2, obj_3, tup_24, obj_25} - tup_2 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - obj_3 = new Matrix(tup_2, 4, 4) - m3 = obj_3 - tup_24 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_25 = new Matrix(tup_24, 4, 4) - obj_25 - private fun iterCol_Transform3D_sp_0(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = ===(j, 0) - if scrut1 is - true then m - else - tmp9 = colY - j - tmp10 = colY - j - tmp11 = iter_Transform3D_sp_0(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_0(m, i, tmp9, tmp11) - tmp13 = j - 1 - iterCol_Transform3D_sp_0(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_1(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_1(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_20(m, i, tmp9, tmp11) - tmp13 = 3 - iterCol_Transform3D_sp_2(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_10(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_11(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_41(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_17(m, i, tmp9, tmp11) - tmp13 = 3 - iterCol_Transform3D_sp_12(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_12(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 1 - tmp10 = 1 - tmp11 = iter_Transform3D_sp_46(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_15(m, i, tmp9, tmp11) - tmp13 = 2 - iterCol_Transform3D_sp_13(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_13(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 2 - tmp10 = 2 - tmp11 = iter_Transform3D_sp_51(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_12(m, i, tmp9, tmp11) - tmp13 = 1 - iterCol_Transform3D_sp_14(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_14(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 3 - tmp10 = 3 - tmp11 = iter_Transform3D_sp_56(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_9(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_15(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_15(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_16(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_61(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_22(m, i, tmp9, tmp11) - tmp13 = 3 - iterCol_Transform3D_sp_17(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_17(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 1 - tmp10 = 1 - tmp11 = iter_Transform3D_sp_66(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_23(m, i, tmp9, tmp11) - tmp13 = 2 - iterCol_Transform3D_sp_18(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_18(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 2 - tmp10 = 2 - tmp11 = iter_Transform3D_sp_71(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_24(m, i, tmp9, tmp11) - tmp13 = 1 - iterCol_Transform3D_sp_19(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_19(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 3 - tmp10 = 3 - tmp11 = iter_Transform3D_sp_76(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_25(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_20(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_2(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 1 - tmp10 = 1 - tmp11 = iter_Transform3D_sp_6(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_18(m, i, tmp9, tmp11) - tmp13 = 2 - iterCol_Transform3D_sp_3(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_20(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_21(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_81(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_20(m, i, tmp9, tmp11) - tmp13 = 3 - iterCol_Transform3D_sp_22(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_22(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 1 - tmp10 = 1 - tmp11 = iter_Transform3D_sp_86(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_18(m, i, tmp9, tmp11) - tmp13 = 2 - iterCol_Transform3D_sp_23(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_23(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 2 - tmp10 = 2 - tmp11 = iter_Transform3D_sp_91(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_16(m, i, tmp9, tmp11) - tmp13 = 1 - iterCol_Transform3D_sp_24(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_24(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 3 - tmp10 = 3 - tmp11 = iter_Transform3D_sp_96(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_21(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_25(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_25(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_26(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_101(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_19(m, i, tmp9, tmp11) - tmp13 = 3 - iterCol_Transform3D_sp_27(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_27(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 1 - tmp10 = 1 - tmp11 = iter_Transform3D_sp_106(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_11(m, i, tmp9, tmp11) - tmp13 = 2 - iterCol_Transform3D_sp_28(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_28(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 2 - tmp10 = 2 - tmp11 = iter_Transform3D_sp_111(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_14(m, i, tmp9, tmp11) - tmp13 = 1 - iterCol_Transform3D_sp_29(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_29(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 3 - tmp10 = 3 - tmp11 = iter_Transform3D_sp_116(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_8(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_30(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_3(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 2 - tmp10 = 2 - tmp11 = iter_Transform3D_sp_11(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_16(m, i, tmp9, tmp11) - tmp13 = 1 - iterCol_Transform3D_sp_4(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_30(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_31(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_121(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_17(m, i, tmp9, tmp11) - tmp13 = 3 - iterCol_Transform3D_sp_32(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_32(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 1 - tmp10 = 1 - tmp11 = iter_Transform3D_sp_126(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_15(m, i, tmp9, tmp11) - tmp13 = 2 - iterCol_Transform3D_sp_33(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_33(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 2 - tmp10 = 2 - tmp11 = iter_Transform3D_sp_131(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_12(m, i, tmp9, tmp11) - tmp13 = 1 - iterCol_Transform3D_sp_34(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_34(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 3 - tmp10 = 3 - tmp11 = iter_Transform3D_sp_136(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_9(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_35(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_35(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_36(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_141(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_22(m, i, tmp9, tmp11) - tmp13 = 3 - iterCol_Transform3D_sp_37(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_37(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 1 - tmp10 = 1 - tmp11 = iter_Transform3D_sp_146(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_23(m, i, tmp9, tmp11) - tmp13 = 2 - iterCol_Transform3D_sp_38(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_38(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 2 - tmp10 = 2 - tmp11 = iter_Transform3D_sp_151(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_24(m, i, tmp9, tmp11) - tmp13 = 1 - iterCol_Transform3D_sp_39(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_39(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 3 - tmp10 = 3 - tmp11 = iter_Transform3D_sp_156(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_25(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_40(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_4(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 3 - tmp10 = 3 - tmp11 = iter_Transform3D_sp_16(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_21(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_5(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_40(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_41(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_161(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_26(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_42(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_42(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_43(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_166(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_27(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_44(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_44(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_45(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_171(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_28(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_46(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_46(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_47(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_176(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_29(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_48(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_48(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_49(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_181(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_26(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_50(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_5(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_50(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_51(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_186(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_27(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_52(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_52(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_53(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_191(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_28(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_54(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_54(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_55(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_196(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_29(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_56(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_56(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_57(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_201(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_26(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_58(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_58(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_59(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_206(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_27(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_60(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_6(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_21(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_19(m, i, tmp9, tmp11) - tmp13 = 3 - iterCol_Transform3D_sp_7(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_60(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_61(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_211(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_28(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_62(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_62(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_63(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = 1 - tmp12 = update_Transform3D_sp_36(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_64(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_64(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_65(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_221(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_26(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_66(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_66(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_67(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_226(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_27(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_68(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_68(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_69(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_231(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_28(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_70(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_7(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 1 - tmp10 = 1 - tmp11 = iter_Transform3D_sp_26(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_11(m, i, tmp9, tmp11) - tmp13 = 2 - iterCol_Transform3D_sp_8(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_70(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_71(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 0 - tmp10 = 0 - tmp11 = iter_Transform3D_sp_236(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_29(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_72(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_72(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = true - m - private fun iterCol_Transform3D_sp_8(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 2 - tmp10 = 2 - tmp11 = iter_Transform3D_sp_31(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_14(m, i, tmp9, tmp11) - tmp13 = 1 - iterCol_Transform3D_sp_9(tmp12, x, y, colX, colY, i, tmp13) - private fun iterCol_Transform3D_sp_9(m, x, y, colX, colY, i, j) = - let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} - scrut1 = false - tmp9 = 3 - tmp10 = 3 - tmp11 = iter_Transform3D_sp_36(0, x, y, colX, i, tmp10, colX) - tmp12 = update_Transform3D_sp_8(m, i, tmp9, tmp11) - tmp13 = 0 - iterCol_Transform3D_sp_10(tmp12, x, y, colX, colY, i, tmp13) - private fun iterID_Transform3D_sp_0(m, w, i) = - let {scrut3, tmp17, tmp18, tmp19, tmp20} - scrut3 = ===(i, 0) - if scrut3 is - true then m - else - tmp17 = w - i - tmp18 = w - i - tmp19 = update_Transform3D_sp_2(m, tmp17, tmp18, 1) - tmp20 = i - 1 - iterID_Transform3D_sp_0(tmp19, w, tmp20) - private fun iterID_Transform3D_sp_1(m, w, i) = - let {scrut3, tmp17, tmp18, tmp19, tmp20, tup_5, obj_6, tup_22, obj_23} - scrut3 = false - tmp17 = 0 - tmp18 = 0 - tup_5 = [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - obj_6 = new Matrix(tup_5, 4, 4) - tmp19 = obj_6 - tmp20 = 3 - tup_22 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_23 = new Matrix(tup_22, 4, 4) - obj_23 - private fun iterID_Transform3D_sp_2(m, w, i) = - let {scrut3, tmp17, tmp18, tmp19, tmp20, tup_8, obj_9, tup_20, obj_21} - scrut3 = false - tmp17 = 1 - tmp18 = 1 - tup_8 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - obj_9 = new Matrix(tup_8, 4, 4) - tmp19 = obj_9 - tmp20 = 2 - tup_20 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_21 = new Matrix(tup_20, 4, 4) - obj_21 - private fun iterID_Transform3D_sp_3(m, w, i) = - let {scrut3, tmp17, tmp18, tmp19, tmp20, tup_11, obj_12, tup_18, obj_19} - scrut3 = false - tmp17 = 2 - tmp18 = 2 - tup_11 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0] - obj_12 = new Matrix(tup_11, 4, 4) - tmp19 = obj_12 - tmp20 = 1 - tup_18 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_19 = new Matrix(tup_18, 4, 4) - obj_19 - private fun iterID_Transform3D_sp_4(m, w, i) = - let {scrut3, tmp17, tmp18, tmp19, tmp20, tup_14, obj_15, tup_16, obj_17} - scrut3 = false - tmp17 = 3 - tmp18 = 3 - tup_14 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_15 = new Matrix(tup_14, 4, 4) - tmp19 = obj_15 - tmp20 = 0 - tup_16 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_17 = new Matrix(tup_16, 4, 4) - obj_17 - private fun iterID_Transform3D_sp_5(m, w, i) = - let {scrut3, tmp17, tmp18, tmp19, tmp20} - scrut3 = true - m - private fun iterRow_Transform3D_sp_0(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = ===(i, 0) - if scrut2 is - true then m - else - tmp14 = rowX - i - tmp15 = iterCol_Transform3D_sp_0(m, x, y, colX, colY, tmp14, colY) - tmp16 = i - 1 - iterRow(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_1(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 0 - tmp15 = iterCol_Transform3D_sp_1(m, x, y, colX, colY, tmp14, colY) - tmp16 = 3 - iterRow_Transform3D_sp_2(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_10(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = true - m - private fun iterRow_Transform3D_sp_11(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 0 - tmp15 = iterCol_Transform3D_sp_41(m, x, y, colX, colY, tmp14, colY) - tmp16 = 3 - iterRow_Transform3D_sp_12(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_12(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 1 - tmp15 = iterCol_Transform3D_sp_43(m, x, y, colX, colY, tmp14, colY) - tmp16 = 2 - iterRow_Transform3D_sp_13(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_13(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 2 - tmp15 = iterCol_Transform3D_sp_45(m, x, y, colX, colY, tmp14, colY) - tmp16 = 1 - iterRow_Transform3D_sp_14(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_14(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 3 - tmp15 = iterCol_Transform3D_sp_47(m, x, y, colX, colY, tmp14, colY) - tmp16 = 0 - iterRow_Transform3D_sp_15(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_15(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = true - m - private fun iterRow_Transform3D_sp_16(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 0 - tmp15 = iterCol_Transform3D_sp_49(m, x, y, colX, colY, tmp14, colY) - tmp16 = 3 - iterRow_Transform3D_sp_17(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_17(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 1 - tmp15 = iterCol_Transform3D_sp_51(m, x, y, colX, colY, tmp14, colY) - tmp16 = 2 - iterRow_Transform3D_sp_18(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_18(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 2 - tmp15 = iterCol_Transform3D_sp_53(m, x, y, colX, colY, tmp14, colY) - tmp16 = 1 - iterRow_Transform3D_sp_19(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_19(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 3 - tmp15 = iterCol_Transform3D_sp_55(m, x, y, colX, colY, tmp14, colY) - tmp16 = 0 - iterRow_Transform3D_sp_20(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_2(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 1 - tmp15 = iterCol_Transform3D_sp_6(m, x, y, colX, colY, tmp14, colY) - tmp16 = 2 - iterRow_Transform3D_sp_3(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_20(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = true - m - private fun iterRow_Transform3D_sp_21(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 0 - tmp15 = iterCol_Transform3D_sp_57(m, x, y, colX, colY, tmp14, colY) - tmp16 = 3 - iterRow_Transform3D_sp_22(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_22(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 1 - tmp15 = iterCol_Transform3D_sp_59(m, x, y, colX, colY, tmp14, colY) - tmp16 = 2 - iterRow_Transform3D_sp_23(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_23(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 2 - tmp15 = iterCol_Transform3D_sp_61(m, x, y, colX, colY, tmp14, colY) - tmp16 = 1 - iterRow_Transform3D_sp_24(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_24(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 3 - tmp15 = iterCol_Transform3D_sp_63(m, x, y, colX, colY, tmp14, colY) - tmp16 = 0 - iterRow_Transform3D_sp_25(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_25(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = true - m - private fun iterRow_Transform3D_sp_26(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 0 - tmp15 = iterCol_Transform3D_sp_65(m, x, y, colX, colY, tmp14, colY) - tmp16 = 3 - iterRow_Transform3D_sp_27(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_27(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 1 - tmp15 = iterCol_Transform3D_sp_67(m, x, y, colX, colY, tmp14, colY) - tmp16 = 2 - iterRow_Transform3D_sp_28(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_28(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 2 - tmp15 = iterCol_Transform3D_sp_69(m, x, y, colX, colY, tmp14, colY) - tmp16 = 1 - iterRow_Transform3D_sp_29(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_29(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 3 - tmp15 = iterCol_Transform3D_sp_71(m, x, y, colX, colY, tmp14, colY) - tmp16 = 0 - iterRow_Transform3D_sp_30(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_3(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 2 - tmp15 = iterCol_Transform3D_sp_11(m, x, y, colX, colY, tmp14, colY) - tmp16 = 1 - iterRow_Transform3D_sp_4(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_30(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = true - m - private fun iterRow_Transform3D_sp_4(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 3 - tmp15 = iterCol_Transform3D_sp_16(m, x, y, colX, colY, tmp14, colY) - tmp16 = 0 - iterRow_Transform3D_sp_5(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_5(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = true - m - private fun iterRow_Transform3D_sp_6(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 0 - tmp15 = iterCol_Transform3D_sp_21(m, x, y, colX, colY, tmp14, colY) - tmp16 = 3 - iterRow_Transform3D_sp_7(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_7(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 1 - tmp15 = iterCol_Transform3D_sp_26(m, x, y, colX, colY, tmp14, colY) - tmp16 = 2 - iterRow_Transform3D_sp_8(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_8(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 2 - tmp15 = iterCol_Transform3D_sp_31(m, x, y, colX, colY, tmp14, colY) - tmp16 = 1 - iterRow_Transform3D_sp_9(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iterRow_Transform3D_sp_9(m, x, y, rowX, colX, colY, i) = - let {scrut2, tmp14, tmp15, tmp16} - scrut2 = false - tmp14 = 3 - tmp15 = iterCol_Transform3D_sp_36(m, x, y, colX, colY, tmp14, colY) - tmp16 = 0 - iterRow_Transform3D_sp_10(tmp15, x, y, rowX, colX, colY, tmp16) - private fun iter_Transform3D_sp_0(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = >(k, 0) - if scrut is - true then - tmp = *(i, x.c) - tmp1 = tmp + colX - tmp2 = tmp1 - k - tmp3 = colX - k - tmp4 = *(tmp3, y.c) - tmp5 = tmp4 + j - tmp6 = *(x.arr.(tmp2), y.arr.(tmp5)) - tmp7 = 0 + tmp6 - tmp8 = k - 1 - iter(tmp7, x, y, colX, i, j, tmp8) - else 0 - private fun iter_Transform3D_sp_1(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 0 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(0), 1) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_2(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_10(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_100(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_101(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 4 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(4), y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_102(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_102(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 5 - tmp3 = 1 - tmp4 = 4 - tmp5 = 4 - tmp6 = *(x.arr.(5), y.arr.(4)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_103(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_103(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 6 - tmp3 = 2 - tmp4 = 8 - tmp5 = 8 - tmp6 = *(x.arr.(6), y.arr.(8)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_104(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_104(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 7 - tmp3 = 3 - tmp4 = 12 - tmp5 = 12 - tmp6 = *(x.arr.(7), y.arr.(12)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_105(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_105(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_106(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 4 - tmp3 = 0 - tmp4 = 0 - tmp5 = 1 - tmp6 = *(x.arr.(4), y.arr.(1)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_107(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_107(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 5 - tmp3 = 1 - tmp4 = 4 - tmp5 = 5 - tmp6 = *(x.arr.(5), y.arr.(5)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_108(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_108(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 6 - tmp3 = 2 - tmp4 = 8 - tmp5 = 9 - tmp6 = *(x.arr.(6), y.arr.(9)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_109(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_109(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 7 - tmp3 = 3 - tmp4 = 12 - tmp5 = 13 - tmp6 = *(x.arr.(7), y.arr.(13)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_110(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_11(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 0 - tmp3 = 0 - tmp4 = 0 - tmp5 = 2 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_12(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_110(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_111(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 4 - tmp3 = 0 - tmp4 = 0 - tmp5 = 2 - tmp6 = *(x.arr.(4), y.arr.(2)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_112(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_112(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 5 - tmp3 = 1 - tmp4 = 4 - tmp5 = 6 - tmp6 = *(x.arr.(5), y.arr.(6)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_113(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_113(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 6 - tmp3 = 2 - tmp4 = 8 - tmp5 = 10 - tmp6 = *(x.arr.(6), y.arr.(10)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_114(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_114(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 7 - tmp3 = 3 - tmp4 = 12 - tmp5 = 14 - tmp6 = *(x.arr.(7), y.arr.(14)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_115(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_115(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_116(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 4 - tmp3 = 0 - tmp4 = 0 - tmp5 = 3 - tmp6 = *(x.arr.(4), y.arr.(3)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_117(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_117(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 5 - tmp3 = 1 - tmp4 = 4 - tmp5 = 7 - tmp6 = *(x.arr.(5), y.arr.(7)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_118(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_118(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 6 - tmp3 = 2 - tmp4 = 8 - tmp5 = 11 - tmp6 = *(x.arr.(6), y.arr.(11)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_119(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_119(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 7 - tmp3 = 3 - tmp4 = 12 - tmp5 = 15 - tmp6 = *(x.arr.(7), y.arr.(15)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_120(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_12(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 1 - tmp3 = 1 - tmp4 = 4 - tmp5 = 6 - tmp6 = 0 - tmp7 = 0 - tmp8 = 2 - iter_Transform3D_sp_13(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_120(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_121(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 8 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(8), y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_122(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_122(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 9 - tmp3 = 1 - tmp4 = 4 - tmp5 = 4 - tmp6 = *(x.arr.(9), y.arr.(4)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_123(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_123(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 10 - tmp3 = 2 - tmp4 = 8 - tmp5 = 8 - tmp6 = *(x.arr.(10), y.arr.(8)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_124(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_124(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 11 - tmp3 = 3 - tmp4 = 12 - tmp5 = 12 - tmp6 = *(x.arr.(11), y.arr.(12)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_125(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_125(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_126(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 8 - tmp3 = 0 - tmp4 = 0 - tmp5 = 1 - tmp6 = *(x.arr.(8), y.arr.(1)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_127(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_127(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 9 - tmp3 = 1 - tmp4 = 4 - tmp5 = 5 - tmp6 = *(x.arr.(9), y.arr.(5)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_128(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_128(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 10 - tmp3 = 2 - tmp4 = 8 - tmp5 = 9 - tmp6 = *(x.arr.(10), y.arr.(9)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_129(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_129(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 11 - tmp3 = 3 - tmp4 = 12 - tmp5 = 13 - tmp6 = *(x.arr.(11), y.arr.(13)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_130(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_13(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 2 - tmp3 = 2 - tmp4 = 8 - tmp5 = 10 - tmp6 = *(x.arr.(2), 1) - tmp7 = 0 + tmp6 - tmp8 = 1 - iter_Transform3D_sp_14(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_130(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_131(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 8 - tmp3 = 0 - tmp4 = 0 - tmp5 = 2 - tmp6 = *(x.arr.(8), y.arr.(2)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_132(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_132(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 9 - tmp3 = 1 - tmp4 = 4 - tmp5 = 6 - tmp6 = *(x.arr.(9), y.arr.(6)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_133(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_133(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 10 - tmp3 = 2 - tmp4 = 8 - tmp5 = 10 - tmp6 = *(x.arr.(10), y.arr.(10)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_134(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_134(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 11 - tmp3 = 3 - tmp4 = 12 - tmp5 = 14 - tmp6 = *(x.arr.(11), y.arr.(14)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_135(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_135(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_136(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 8 - tmp3 = 0 - tmp4 = 0 - tmp5 = 3 - tmp6 = *(x.arr.(8), y.arr.(3)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_137(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_137(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 9 - tmp3 = 1 - tmp4 = 4 - tmp5 = 7 - tmp6 = *(x.arr.(9), y.arr.(7)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_138(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_138(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 10 - tmp3 = 2 - tmp4 = 8 - tmp5 = 11 - tmp6 = *(x.arr.(10), y.arr.(11)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_139(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_139(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 11 - tmp3 = 3 - tmp4 = 12 - tmp5 = 15 - tmp6 = *(x.arr.(11), y.arr.(15)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_140(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_14(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 3 - tmp3 = 3 - tmp4 = 12 - tmp5 = 14 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_15(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_140(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_141(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 12 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(12), y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_142(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_142(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 13 - tmp3 = 1 - tmp4 = 4 - tmp5 = 4 - tmp6 = *(x.arr.(13), y.arr.(4)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_143(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_143(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 14 - tmp3 = 2 - tmp4 = 8 - tmp5 = 8 - tmp6 = *(x.arr.(14), y.arr.(8)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_144(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_144(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 15 - tmp3 = 3 - tmp4 = 12 - tmp5 = 12 - tmp6 = *(x.arr.(15), y.arr.(12)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_145(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_145(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_146(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 12 - tmp3 = 0 - tmp4 = 0 - tmp5 = 1 - tmp6 = *(x.arr.(12), y.arr.(1)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_147(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_147(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 13 - tmp3 = 1 - tmp4 = 4 - tmp5 = 5 - tmp6 = *(x.arr.(13), y.arr.(5)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_148(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_148(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 14 - tmp3 = 2 - tmp4 = 8 - tmp5 = 9 - tmp6 = *(x.arr.(14), y.arr.(9)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_149(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_149(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 15 - tmp3 = 3 - tmp4 = 12 - tmp5 = 13 - tmp6 = *(x.arr.(15), y.arr.(13)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_150(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_15(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_150(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_151(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 12 - tmp3 = 0 - tmp4 = 0 - tmp5 = 2 - tmp6 = *(x.arr.(12), y.arr.(2)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_152(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_152(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 13 - tmp3 = 1 - tmp4 = 4 - tmp5 = 6 - tmp6 = *(x.arr.(13), y.arr.(6)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_153(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_153(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 14 - tmp3 = 2 - tmp4 = 8 - tmp5 = 10 - tmp6 = *(x.arr.(14), y.arr.(10)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_154(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_154(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 15 - tmp3 = 3 - tmp4 = 12 - tmp5 = 14 - tmp6 = *(x.arr.(15), y.arr.(14)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_155(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_155(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_156(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 12 - tmp3 = 0 - tmp4 = 0 - tmp5 = 3 - tmp6 = *(x.arr.(12), y.arr.(3)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_157(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_157(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 13 - tmp3 = 1 - tmp4 = 4 - tmp5 = 7 - tmp6 = *(x.arr.(13), y.arr.(7)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_158(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_158(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 14 - tmp3 = 2 - tmp4 = 8 - tmp5 = 11 - tmp6 = *(x.arr.(14), y.arr.(11)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_159(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_159(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 15 - tmp3 = 3 - tmp4 = 12 - tmp5 = 15 - tmp6 = *(x.arr.(15), y.arr.(15)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_160(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_16(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 0 - tmp3 = 0 - tmp4 = 0 - tmp5 = 3 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_17(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_160(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_161(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 0 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(0), y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_162(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_162(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 1 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = *(x.arr.(1), y.arr.(1)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_163(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_163(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 2 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = *(x.arr.(2), y.arr.(2)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_164(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_164(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 3 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = *(x.arr.(3), 1) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_165(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_165(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_166(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 4 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(4), y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_167(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_167(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 5 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = *(x.arr.(5), y.arr.(1)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_168(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_168(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 6 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = *(x.arr.(6), y.arr.(2)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_169(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_169(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 7 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = *(x.arr.(7), 1) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_170(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_17(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 1 - tmp3 = 1 - tmp4 = 4 - tmp5 = 7 - tmp6 = 0 - tmp7 = 0 - tmp8 = 2 - iter_Transform3D_sp_18(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_170(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_171(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 8 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(8), y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_172(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_172(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 9 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = *(x.arr.(9), y.arr.(1)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_173(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_173(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 10 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = *(x.arr.(10), y.arr.(2)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_174(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_174(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 11 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = *(x.arr.(11), 1) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_175(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_175(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_176(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 12 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(12), y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_177(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_177(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 13 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = *(x.arr.(13), y.arr.(1)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_178(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_178(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 14 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = *(x.arr.(14), y.arr.(2)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_179(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_179(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 15 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = *(x.arr.(15), 1) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_180(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_18(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 2 - tmp3 = 2 - tmp4 = 8 - tmp5 = 11 - tmp6 = 0 - tmp7 = 0 - tmp8 = 1 - iter_Transform3D_sp_19(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_180(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_181(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 0 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(0), y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_182(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_182(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 1 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = *(x.arr.(1), y.arr.(1)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_183(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_183(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 2 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = *(x.arr.(2), y.arr.(2)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_184(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_184(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 3 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = *(x.arr.(3), y.arr.(3)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_185(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_185(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_186(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 4 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(4), y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_187(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_187(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 5 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = *(x.arr.(5), y.arr.(1)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_188(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_188(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 6 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = *(x.arr.(6), y.arr.(2)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_189(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_189(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 7 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = *(x.arr.(7), y.arr.(3)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_190(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_19(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 3 - tmp3 = 3 - tmp4 = 12 - tmp5 = 15 - tmp6 = *(x.arr.(3), 1) - tmp7 = 0 + tmp6 - tmp8 = 0 - iter_Transform3D_sp_20(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_190(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_191(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 8 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(8), y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_192(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_192(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 9 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = *(x.arr.(9), y.arr.(1)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_193(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_193(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 10 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = *(x.arr.(10), y.arr.(2)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_194(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_194(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 11 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = *(x.arr.(11), y.arr.(3)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_195(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_195(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_196(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 12 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(12), y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_197(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_197(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 13 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = *(x.arr.(13), y.arr.(1)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_198(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_198(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 14 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = *(x.arr.(14), y.arr.(2)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_199(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_199(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 15 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = *(x.arr.(15), y.arr.(3)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_200(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_2(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 1 - tmp3 = 1 - tmp4 = 4 - tmp5 = 4 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 2 - iter_Transform3D_sp_3(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_20(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_200(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_201(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 0 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(0.4, y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_202(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_202(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 1 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 2 - iter_Transform3D_sp_203(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_203(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 2 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 1 - iter_Transform3D_sp_204(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_204(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 3 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_205(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_205(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_206(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 4 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_207(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_207(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 5 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = *(0.19, y.arr.(1)) - tmp7 = 0 + tmp6 - tmp8 = 2 - iter_Transform3D_sp_208(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_208(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 6 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 1 - iter_Transform3D_sp_209(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_209(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 7 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_210(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_21(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 4 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(4), 1) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_22(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_210(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_211(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 8 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_212(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_212(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 9 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = 0 - tmp7 = 0 - tmp8 = 2 - iter_Transform3D_sp_213(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_213(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 10 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = *(0.19, y.arr.(2)) - tmp7 = 0 + tmp6 - tmp8 = 1 - iter_Transform3D_sp_214(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_214(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 11 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_215(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_215(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_216(sum, x, y, colX, i, j, k) = 1 - private fun iter_Transform3D_sp_217(sum, x, y, colX, i, j, k) = 1 - private fun iter_Transform3D_sp_218(sum, x, y, colX, i, j, k) = 1 - private fun iter_Transform3D_sp_219(sum, x, y, colX, i, j, k) = 1 - private fun iter_Transform3D_sp_22(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 5 - tmp3 = 1 - tmp4 = 4 - tmp5 = 4 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 2 - iter_Transform3D_sp_23(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_220(sum, x, y, colX, i, j, k) = 1 - private fun iter_Transform3D_sp_221(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 0 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(1, y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_222(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_222(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 1 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 2 - iter_Transform3D_sp_223(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_223(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 2 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 1 - iter_Transform3D_sp_224(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_224(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 3 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = *(11, y.arr.(3)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_225(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_225(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_226(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 4 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_227(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_227(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 5 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = *(1, y.arr.(1)) - tmp7 = 0 + tmp6 - tmp8 = 2 - iter_Transform3D_sp_228(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_228(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 6 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 1 - iter_Transform3D_sp_229(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_229(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 7 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = *(4, y.arr.(3)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_230(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_23(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 6 - tmp3 = 2 - tmp4 = 8 - tmp5 = 8 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 1 - iter_Transform3D_sp_24(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_230(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_231(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 8 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_232(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_232(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 9 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = 0 - tmp7 = 0 - tmp8 = 2 - iter_Transform3D_sp_233(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_233(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 10 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = *(1, y.arr.(2)) - tmp7 = 0 + tmp6 - tmp8 = 1 - iter_Transform3D_sp_234(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_234(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 11 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = *(51, y.arr.(3)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_235(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_235(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_236(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 12 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_237(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_237(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 13 - tmp3 = 1 - tmp4 = 1 - tmp5 = 1 - tmp6 = 0 - tmp7 = 0 - tmp8 = 2 - iter_Transform3D_sp_238(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_238(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 14 - tmp3 = 2 - tmp4 = 2 - tmp5 = 2 - tmp6 = 0 - tmp7 = 0 - tmp8 = 1 - iter_Transform3D_sp_239(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_239(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 15 - tmp3 = 3 - tmp4 = 3 - tmp5 = 3 - tmp6 = *(1, y.arr.(3)) - tmp7 = 0 + tmp6 - tmp8 = 0 - iter_Transform3D_sp_240(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_24(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 7 - tmp3 = 3 - tmp4 = 12 - tmp5 = 12 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_25(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_240(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_25(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_26(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 4 - tmp3 = 0 - tmp4 = 0 - tmp5 = 1 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_27(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_27(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 5 - tmp3 = 1 - tmp4 = 4 - tmp5 = 5 - tmp6 = *(x.arr.(5), 1) - tmp7 = 0 + tmp6 - tmp8 = 2 - iter_Transform3D_sp_28(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_28(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 6 - tmp3 = 2 - tmp4 = 8 - tmp5 = 9 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 1 - iter_Transform3D_sp_29(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_29(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 7 - tmp3 = 3 - tmp4 = 12 - tmp5 = 13 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_30(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_3(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 2 - tmp3 = 2 - tmp4 = 8 - tmp5 = 8 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 1 - iter_Transform3D_sp_4(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_30(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_31(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 4 - tmp3 = 0 - tmp4 = 0 - tmp5 = 2 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_32(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_32(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 5 - tmp3 = 1 - tmp4 = 4 - tmp5 = 6 - tmp6 = 0 - tmp7 = 0 - tmp8 = 2 - iter_Transform3D_sp_33(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_33(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 6 - tmp3 = 2 - tmp4 = 8 - tmp5 = 10 - tmp6 = *(x.arr.(6), 1) - tmp7 = 0 + tmp6 - tmp8 = 1 - iter_Transform3D_sp_34(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_34(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 7 - tmp3 = 3 - tmp4 = 12 - tmp5 = 14 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_35(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_35(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_36(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 4 - tmp3 = 0 - tmp4 = 0 - tmp5 = 3 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_37(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_37(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 5 - tmp3 = 1 - tmp4 = 4 - tmp5 = 7 - tmp6 = 0 - tmp7 = 0 - tmp8 = 2 - iter_Transform3D_sp_38(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_38(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 6 - tmp3 = 2 - tmp4 = 8 - tmp5 = 11 - tmp6 = 0 - tmp7 = 0 - tmp8 = 1 - iter_Transform3D_sp_39(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_39(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 4 - tmp1 = 8 - tmp2 = 7 - tmp3 = 3 - tmp4 = 12 - tmp5 = 15 - tmp6 = *(x.arr.(7), 1) - tmp7 = 0 + tmp6 - tmp8 = 0 - iter_Transform3D_sp_40(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_4(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 3 - tmp3 = 3 - tmp4 = 12 - tmp5 = 12 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_5(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_40(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_41(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 8 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(8), 1) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_42(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_42(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 9 - tmp3 = 1 - tmp4 = 4 - tmp5 = 4 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 2 - iter_Transform3D_sp_43(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_43(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 10 - tmp3 = 2 - tmp4 = 8 - tmp5 = 8 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 1 - iter_Transform3D_sp_44(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_44(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 11 - tmp3 = 3 - tmp4 = 12 - tmp5 = 12 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_45(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_45(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_46(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 8 - tmp3 = 0 - tmp4 = 0 - tmp5 = 1 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_47(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_47(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 9 - tmp3 = 1 - tmp4 = 4 - tmp5 = 5 - tmp6 = *(x.arr.(9), 1) - tmp7 = 0 + tmp6 - tmp8 = 2 - iter_Transform3D_sp_48(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_48(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 10 - tmp3 = 2 - tmp4 = 8 - tmp5 = 9 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 1 - iter_Transform3D_sp_49(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_49(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 11 - tmp3 = 3 - tmp4 = 12 - tmp5 = 13 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_50(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_5(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_50(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_51(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 8 - tmp3 = 0 - tmp4 = 0 - tmp5 = 2 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_52(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_52(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 9 - tmp3 = 1 - tmp4 = 4 - tmp5 = 6 - tmp6 = 0 - tmp7 = 0 - tmp8 = 2 - iter_Transform3D_sp_53(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_53(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 10 - tmp3 = 2 - tmp4 = 8 - tmp5 = 10 - tmp6 = *(x.arr.(10), 1) - tmp7 = 0 + tmp6 - tmp8 = 1 - iter_Transform3D_sp_54(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_54(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 11 - tmp3 = 3 - tmp4 = 12 - tmp5 = 14 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_55(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_55(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_56(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 8 - tmp3 = 0 - tmp4 = 0 - tmp5 = 3 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_57(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_57(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 9 - tmp3 = 1 - tmp4 = 4 - tmp5 = 7 - tmp6 = 0 - tmp7 = 0 - tmp8 = 2 - iter_Transform3D_sp_58(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_58(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 10 - tmp3 = 2 - tmp4 = 8 - tmp5 = 11 - tmp6 = 0 - tmp7 = 0 - tmp8 = 1 - iter_Transform3D_sp_59(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_59(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 8 - tmp1 = 12 - tmp2 = 11 - tmp3 = 3 - tmp4 = 12 - tmp5 = 15 - tmp6 = *(x.arr.(11), 1) - tmp7 = 0 + tmp6 - tmp8 = 0 - iter_Transform3D_sp_60(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_6(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 0 - tmp3 = 0 - tmp4 = 0 - tmp5 = 1 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_7(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_60(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_61(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 12 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(12), 1) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_62(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_62(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 13 - tmp3 = 1 - tmp4 = 4 - tmp5 = 4 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 2 - iter_Transform3D_sp_63(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_63(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 14 - tmp3 = 2 - tmp4 = 8 - tmp5 = 8 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 1 - iter_Transform3D_sp_64(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_64(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 15 - tmp3 = 3 - tmp4 = 12 - tmp5 = 12 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_65(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_65(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_66(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 12 - tmp3 = 0 - tmp4 = 0 - tmp5 = 1 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_67(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_67(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 13 - tmp3 = 1 - tmp4 = 4 - tmp5 = 5 - tmp6 = *(x.arr.(13), 1) - tmp7 = 0 + tmp6 - tmp8 = 2 - iter_Transform3D_sp_68(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_68(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 14 - tmp3 = 2 - tmp4 = 8 - tmp5 = 9 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 1 - iter_Transform3D_sp_69(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_69(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 15 - tmp3 = 3 - tmp4 = 12 - tmp5 = 13 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_70(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_7(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 1 - tmp3 = 1 - tmp4 = 4 - tmp5 = 5 - tmp6 = *(x.arr.(1), 1) - tmp7 = 0 + tmp6 - tmp8 = 2 - iter_Transform3D_sp_8(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_70(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_71(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 12 - tmp3 = 0 - tmp4 = 0 - tmp5 = 2 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_72(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_72(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 13 - tmp3 = 1 - tmp4 = 4 - tmp5 = 6 - tmp6 = 0 - tmp7 = 0 - tmp8 = 2 - iter_Transform3D_sp_73(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_73(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 14 - tmp3 = 2 - tmp4 = 8 - tmp5 = 10 - tmp6 = *(x.arr.(14), 1) - tmp7 = 0 + tmp6 - tmp8 = 1 - iter_Transform3D_sp_74(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_74(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 15 - tmp3 = 3 - tmp4 = 12 - tmp5 = 14 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_75(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_75(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_76(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 12 - tmp3 = 0 - tmp4 = 0 - tmp5 = 3 - tmp6 = 0 - tmp7 = 0 - tmp8 = 3 - iter_Transform3D_sp_77(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_77(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 13 - tmp3 = 1 - tmp4 = 4 - tmp5 = 7 - tmp6 = 0 - tmp7 = 0 - tmp8 = 2 - iter_Transform3D_sp_78(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_78(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 14 - tmp3 = 2 - tmp4 = 8 - tmp5 = 11 - tmp6 = 0 - tmp7 = 0 - tmp8 = 1 - iter_Transform3D_sp_79(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_79(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 12 - tmp1 = 16 - tmp2 = 15 - tmp3 = 3 - tmp4 = 12 - tmp5 = 15 - tmp6 = *(x.arr.(15), 1) - tmp7 = 0 + tmp6 - tmp8 = 0 - iter_Transform3D_sp_80(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_8(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 2 - tmp3 = 2 - tmp4 = 8 - tmp5 = 9 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 1 - iter_Transform3D_sp_9(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_80(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_81(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 0 - tmp3 = 0 - tmp4 = 0 - tmp5 = 0 - tmp6 = *(x.arr.(0), y.arr.(0)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_82(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_82(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 1 - tmp3 = 1 - tmp4 = 4 - tmp5 = 4 - tmp6 = *(x.arr.(1), y.arr.(4)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_83(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_83(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 2 - tmp3 = 2 - tmp4 = 8 - tmp5 = 8 - tmp6 = *(x.arr.(2), y.arr.(8)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_84(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_84(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 3 - tmp3 = 3 - tmp4 = 12 - tmp5 = 12 - tmp6 = *(x.arr.(3), y.arr.(12)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_85(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_85(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_86(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 0 - tmp3 = 0 - tmp4 = 0 - tmp5 = 1 - tmp6 = *(x.arr.(0), y.arr.(1)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_87(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_87(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 1 - tmp3 = 1 - tmp4 = 4 - tmp5 = 5 - tmp6 = *(x.arr.(1), y.arr.(5)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_88(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_88(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 2 - tmp3 = 2 - tmp4 = 8 - tmp5 = 9 - tmp6 = *(x.arr.(2), y.arr.(9)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_89(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_89(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 3 - tmp3 = 3 - tmp4 = 12 - tmp5 = 13 - tmp6 = *(x.arr.(3), y.arr.(13)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_90(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_9(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 3 - tmp3 = 3 - tmp4 = 12 - tmp5 = 13 - tmp6 = 0 - tmp7 = sum + 0 - tmp8 = 0 - iter_Transform3D_sp_10(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_90(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_91(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 0 - tmp3 = 0 - tmp4 = 0 - tmp5 = 2 - tmp6 = *(x.arr.(0), y.arr.(2)) - tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_92(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_92(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 1 - tmp3 = 1 - tmp4 = 4 - tmp5 = 6 - tmp6 = *(x.arr.(1), y.arr.(6)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_93(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_93(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 2 - tmp3 = 2 - tmp4 = 8 - tmp5 = 10 - tmp6 = *(x.arr.(2), y.arr.(10)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_94(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_94(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 3 - tmp3 = 3 - tmp4 = 12 - tmp5 = 14 - tmp6 = *(x.arr.(3), y.arr.(14)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_95(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_95(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = false - sum - private fun iter_Transform3D_sp_96(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 0 - tmp3 = 0 - tmp4 = 0 - tmp5 = 3 - tmp6 = *(x.arr.(0), y.arr.(3)) +open Transform3D +fun ident_Transform3D_sp_0(w) = + let {m3, tup_2, obj_3, tup_24, obj_25} + tup_2 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + obj_3 = new Matrix(tup_2, 4, 4) + m3 = obj_3 + tup_24 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_25 = new Matrix(tup_24, 4, 4) + obj_25 +fun iterCol_Transform3D_sp_0(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = ===(j, 0) + if scrut1 is + true then m + else + tmp9 = colY - j + tmp10 = colY - j + tmp11 = iter_Transform3D_sp_0(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_0(m, i, tmp9, tmp11) + tmp13 = j - 1 + iterCol_Transform3D_sp_0(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_1(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_1(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_20(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_2(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_10(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_11(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_41(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_17(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_12(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_12(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_46(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_15(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_13(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_13(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_51(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_12(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_14(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_14(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_56(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_9(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_15(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_15(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_16(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_61(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_22(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_17(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_17(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_66(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_23(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_18(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_18(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_71(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_24(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_19(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_19(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_76(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_25(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_20(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_2(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_6(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_18(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_3(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_20(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_21(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_81(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_20(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_22(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_22(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_86(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_18(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_23(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_23(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_91(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_16(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_24(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_24(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_96(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_21(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_25(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_25(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_26(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_101(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_19(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_27(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_27(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_106(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_11(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_28(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_28(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_111(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_14(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_29(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_29(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_116(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_8(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_30(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_3(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_11(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_16(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_4(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_30(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_31(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_121(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_17(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_32(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_32(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_126(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_15(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_33(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_33(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_131(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_12(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_34(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_34(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_136(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_9(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_35(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_35(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_36(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_141(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_22(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_37(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_37(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_146(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_23(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_38(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_38(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_151(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_24(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_39(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_39(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_156(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_25(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_40(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_4(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_16(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_21(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_5(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_40(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_41(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_161(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_26(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_42(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_42(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_43(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_166(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_27(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_44(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_44(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_45(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_171(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_28(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_46(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_46(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_47(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_176(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_29(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_48(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_48(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_49(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_181(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_26(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_50(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_5(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_50(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_51(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_186(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_27(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_52(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_52(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_53(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_191(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_28(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_54(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_54(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_55(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_196(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_29(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_56(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_56(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_57(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_201(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_26(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_58(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_58(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_59(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_206(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_27(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_60(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_6(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_21(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_19(m, i, tmp9, tmp11) + tmp13 = 3 + iterCol_Transform3D_sp_7(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_60(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_61(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_211(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_28(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_62(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_62(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_63(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = 1 + tmp12 = update_Transform3D_sp_36(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_64(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_64(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_65(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_221(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_26(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_66(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_66(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_67(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_226(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_27(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_68(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_68(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_69(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_231(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_28(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_70(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_7(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 1 + tmp10 = 1 + tmp11 = iter_Transform3D_sp_26(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_11(m, i, tmp9, tmp11) + tmp13 = 2 + iterCol_Transform3D_sp_8(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_70(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_71(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 0 + tmp10 = 0 + tmp11 = iter_Transform3D_sp_236(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_29(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_72(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_72(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = true + m +fun iterCol_Transform3D_sp_8(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 2 + tmp10 = 2 + tmp11 = iter_Transform3D_sp_31(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_14(m, i, tmp9, tmp11) + tmp13 = 1 + iterCol_Transform3D_sp_9(tmp12, x, y, colX, colY, i, tmp13) +fun iterCol_Transform3D_sp_9(m, x, y, colX, colY, i, j) = + let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} + scrut1 = false + tmp9 = 3 + tmp10 = 3 + tmp11 = iter_Transform3D_sp_36(0, x, y, colX, i, tmp10, colX) + tmp12 = update_Transform3D_sp_8(m, i, tmp9, tmp11) + tmp13 = 0 + iterCol_Transform3D_sp_10(tmp12, x, y, colX, colY, i, tmp13) +fun iterID_Transform3D_sp_0(m, w, i) = + let {scrut3, tmp17, tmp18, tmp19, tmp20} + scrut3 = ===(i, 0) + if scrut3 is + true then m + else + tmp17 = w - i + tmp18 = w - i + tmp19 = update_Transform3D_sp_2(m, tmp17, tmp18, 1) + tmp20 = i - 1 + iterID_Transform3D_sp_0(tmp19, w, tmp20) +fun iterID_Transform3D_sp_1(m, w, i) = + let {scrut3, tmp17, tmp18, tmp19, tmp20, tup_5, obj_6, tup_22, obj_23} + scrut3 = false + tmp17 = 0 + tmp18 = 0 + tup_5 = [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + obj_6 = new Matrix(tup_5, 4, 4) + tmp19 = obj_6 + tmp20 = 3 + tup_22 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_23 = new Matrix(tup_22, 4, 4) + obj_23 +fun iterID_Transform3D_sp_2(m, w, i) = + let {scrut3, tmp17, tmp18, tmp19, tmp20, tup_8, obj_9, tup_20, obj_21} + scrut3 = false + tmp17 = 1 + tmp18 = 1 + tup_8 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + obj_9 = new Matrix(tup_8, 4, 4) + tmp19 = obj_9 + tmp20 = 2 + tup_20 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_21 = new Matrix(tup_20, 4, 4) + obj_21 +fun iterID_Transform3D_sp_3(m, w, i) = + let {scrut3, tmp17, tmp18, tmp19, tmp20, tup_11, obj_12, tup_18, obj_19} + scrut3 = false + tmp17 = 2 + tmp18 = 2 + tup_11 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0] + obj_12 = new Matrix(tup_11, 4, 4) + tmp19 = obj_12 + tmp20 = 1 + tup_18 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_19 = new Matrix(tup_18, 4, 4) + obj_19 +fun iterID_Transform3D_sp_4(m, w, i) = + let {scrut3, tmp17, tmp18, tmp19, tmp20, tup_14, obj_15, tup_16, obj_17} + scrut3 = false + tmp17 = 3 + tmp18 = 3 + tup_14 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_15 = new Matrix(tup_14, 4, 4) + tmp19 = obj_15 + tmp20 = 0 + tup_16 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_17 = new Matrix(tup_16, 4, 4) + obj_17 +fun iterID_Transform3D_sp_5(m, w, i) = + let {scrut3, tmp17, tmp18, tmp19, tmp20} + scrut3 = true + m +fun iterRow_Transform3D_sp_0(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = ===(i, 0) + if scrut2 is + true then m + else + tmp14 = rowX - i + tmp15 = iterCol_Transform3D_sp_0(m, x, y, colX, colY, tmp14, colY) + tmp16 = i - 1 + iterRow(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_1(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 0 + tmp15 = iterCol_Transform3D_sp_1(m, x, y, colX, colY, tmp14, colY) + tmp16 = 3 + iterRow_Transform3D_sp_2(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_10(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = true + m +fun iterRow_Transform3D_sp_11(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 0 + tmp15 = iterCol_Transform3D_sp_41(m, x, y, colX, colY, tmp14, colY) + tmp16 = 3 + iterRow_Transform3D_sp_12(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_12(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 1 + tmp15 = iterCol_Transform3D_sp_43(m, x, y, colX, colY, tmp14, colY) + tmp16 = 2 + iterRow_Transform3D_sp_13(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_13(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 2 + tmp15 = iterCol_Transform3D_sp_45(m, x, y, colX, colY, tmp14, colY) + tmp16 = 1 + iterRow_Transform3D_sp_14(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_14(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 3 + tmp15 = iterCol_Transform3D_sp_47(m, x, y, colX, colY, tmp14, colY) + tmp16 = 0 + iterRow_Transform3D_sp_15(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_15(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = true + m +fun iterRow_Transform3D_sp_16(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 0 + tmp15 = iterCol_Transform3D_sp_49(m, x, y, colX, colY, tmp14, colY) + tmp16 = 3 + iterRow_Transform3D_sp_17(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_17(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 1 + tmp15 = iterCol_Transform3D_sp_51(m, x, y, colX, colY, tmp14, colY) + tmp16 = 2 + iterRow_Transform3D_sp_18(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_18(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 2 + tmp15 = iterCol_Transform3D_sp_53(m, x, y, colX, colY, tmp14, colY) + tmp16 = 1 + iterRow_Transform3D_sp_19(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_19(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 3 + tmp15 = iterCol_Transform3D_sp_55(m, x, y, colX, colY, tmp14, colY) + tmp16 = 0 + iterRow_Transform3D_sp_20(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_2(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 1 + tmp15 = iterCol_Transform3D_sp_6(m, x, y, colX, colY, tmp14, colY) + tmp16 = 2 + iterRow_Transform3D_sp_3(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_20(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = true + m +fun iterRow_Transform3D_sp_21(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 0 + tmp15 = iterCol_Transform3D_sp_57(m, x, y, colX, colY, tmp14, colY) + tmp16 = 3 + iterRow_Transform3D_sp_22(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_22(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 1 + tmp15 = iterCol_Transform3D_sp_59(m, x, y, colX, colY, tmp14, colY) + tmp16 = 2 + iterRow_Transform3D_sp_23(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_23(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 2 + tmp15 = iterCol_Transform3D_sp_61(m, x, y, colX, colY, tmp14, colY) + tmp16 = 1 + iterRow_Transform3D_sp_24(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_24(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 3 + tmp15 = iterCol_Transform3D_sp_63(m, x, y, colX, colY, tmp14, colY) + tmp16 = 0 + iterRow_Transform3D_sp_25(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_25(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = true + m +fun iterRow_Transform3D_sp_26(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 0 + tmp15 = iterCol_Transform3D_sp_65(m, x, y, colX, colY, tmp14, colY) + tmp16 = 3 + iterRow_Transform3D_sp_27(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_27(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 1 + tmp15 = iterCol_Transform3D_sp_67(m, x, y, colX, colY, tmp14, colY) + tmp16 = 2 + iterRow_Transform3D_sp_28(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_28(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 2 + tmp15 = iterCol_Transform3D_sp_69(m, x, y, colX, colY, tmp14, colY) + tmp16 = 1 + iterRow_Transform3D_sp_29(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_29(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 3 + tmp15 = iterCol_Transform3D_sp_71(m, x, y, colX, colY, tmp14, colY) + tmp16 = 0 + iterRow_Transform3D_sp_30(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_3(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 2 + tmp15 = iterCol_Transform3D_sp_11(m, x, y, colX, colY, tmp14, colY) + tmp16 = 1 + iterRow_Transform3D_sp_4(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_30(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = true + m +fun iterRow_Transform3D_sp_4(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 3 + tmp15 = iterCol_Transform3D_sp_16(m, x, y, colX, colY, tmp14, colY) + tmp16 = 0 + iterRow_Transform3D_sp_5(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_5(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = true + m +fun iterRow_Transform3D_sp_6(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 0 + tmp15 = iterCol_Transform3D_sp_21(m, x, y, colX, colY, tmp14, colY) + tmp16 = 3 + iterRow_Transform3D_sp_7(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_7(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 1 + tmp15 = iterCol_Transform3D_sp_26(m, x, y, colX, colY, tmp14, colY) + tmp16 = 2 + iterRow_Transform3D_sp_8(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_8(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 2 + tmp15 = iterCol_Transform3D_sp_31(m, x, y, colX, colY, tmp14, colY) + tmp16 = 1 + iterRow_Transform3D_sp_9(tmp15, x, y, rowX, colX, colY, tmp16) +fun iterRow_Transform3D_sp_9(m, x, y, rowX, colX, colY, i) = + let {scrut2, tmp14, tmp15, tmp16} + scrut2 = false + tmp14 = 3 + tmp15 = iterCol_Transform3D_sp_36(m, x, y, colX, colY, tmp14, colY) + tmp16 = 0 + iterRow_Transform3D_sp_10(tmp15, x, y, rowX, colX, colY, tmp16) +fun iter_Transform3D_sp_0(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = >(k, 0) + if scrut is + true then + tmp = *(i, x.c) + tmp1 = tmp + colX + tmp2 = tmp1 - k + tmp3 = colX - k + tmp4 = *(tmp3, y.c) + tmp5 = tmp4 + j + tmp6 = *(x.arr.(tmp2), y.arr.(tmp5)) tmp7 = 0 + tmp6 - tmp8 = 3 - iter_Transform3D_sp_97(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_97(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 1 - tmp3 = 1 - tmp4 = 4 - tmp5 = 7 - tmp6 = *(x.arr.(1), y.arr.(7)) - tmp7 = sum + tmp6 - tmp8 = 2 - iter_Transform3D_sp_98(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_98(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 2 - tmp3 = 2 - tmp4 = 8 - tmp5 = 11 - tmp6 = *(x.arr.(2), y.arr.(11)) - tmp7 = sum + tmp6 - tmp8 = 1 - iter_Transform3D_sp_99(tmp7, x, y, colX, i, j, tmp8) - private fun iter_Transform3D_sp_99(sum, x, y, colX, i, j, k) = - let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} - scrut = true - tmp = 0 - tmp1 = 4 - tmp2 = 3 - tmp3 = 3 - tmp4 = 12 - tmp5 = 15 - tmp6 = *(x.arr.(3), y.arr.(15)) - tmp7 = sum + tmp6 - tmp8 = 0 - iter_Transform3D_sp_100(tmp7, x, y, colX, i, j, tmp8) - private fun model_Transform3D_sp_0(local, position, scaling, rotation) = - let {rot, res1, tmp47, tmp48, tmp49, tmp50, tmp51, tmp52, tmp53, tmp54, tmp55, tmp56, tmp57, tmp58, tup_53, obj_54, tup_66, obj_67, tup_79, obj_80} - tmp47 = rotateZ_Transform3D_sp_0(rotation.2) - tmp48 = rotateY_Transform3D_sp_0(rotation.1) - tmp49 = rotateX_Transform3D_sp_0(rotation.0) - tup_53 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_54 = new Matrix(tup_53, 4, 4) - tmp50 = obj_54 - tmp51 = multiply_Transform3D_sp_0(tmp49, tmp50) - tmp52 = multiply_Transform3D_sp_1(tmp48, tmp51) - rot = multiply_Transform3D_sp_1(tmp47, tmp52) - tup_66 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] - obj_67 = new Matrix(tup_66, 4, 4) - tmp53 = obj_67 - tup_79 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] - obj_80 = new Matrix(tup_79, 4, 4) - tmp54 = obj_80 - tmp55 = [local.0, local.1, local.2, 1] - tmp56 = new Matrix(tmp55, 4, 1) - tmp57 = multiply_Transform3D_sp_4(tmp54, tmp56) - tmp58 = multiply_Transform3D_sp_3(rot, tmp57) - res1 = multiply_Transform3D_sp_5(tmp53, tmp58) - [res1.arr.0, res1.arr.1, res1.arr.2] - private fun multiply_Transform3D_sp_0(x, y) = - let {res, tup_38, obj_39} - tup_38 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - obj_39 = new Matrix(tup_38, 4, 4) - res = obj_39 - iterRow_Transform3D_sp_1(res, x, y, x.r, x.c, y.c, x.r) - private fun multiply_Transform3D_sp_1(x, y) = - let {res, tup_40, obj_41} - tup_40 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - obj_41 = new Matrix(tup_40, 4, 4) - res = obj_41 - iterRow_Transform3D_sp_6(res, x, y, x.r, x.c, y.c, x.r) - private fun multiply_Transform3D_sp_2(x, y) = - let {res, tup_43, obj_44} - tup_43 = [0, 0, 0, 0] - obj_44 = new Matrix(tup_43, 4, 1) - res = obj_44 - iterRow_Transform3D_sp_11(res, x, y, x.r, x.c, y.c, x.r) - private fun multiply_Transform3D_sp_3(x, y) = - let {res, tup_45, obj_46} - tup_45 = [0, 0, 0, 0] - obj_46 = new Matrix(tup_45, 4, 1) - res = obj_46 - iterRow_Transform3D_sp_16(res, x, y, x.r, x.c, y.c, x.r) - private fun multiply_Transform3D_sp_4(x, y) = - let {res, tup_81, obj_82} - tup_81 = [0, 0, 0, 0] - obj_82 = new Matrix(tup_81, 4, 1) - res = obj_82 - iterRow_Transform3D_sp_21(res, x, y, x.r, x.c, y.c, x.r) - private fun multiply_Transform3D_sp_5(x, y) = - let {res, tup_83, obj_84} - tup_83 = [0, 0, 0, 0] - obj_84 = new Matrix(tup_83, 4, 1) - res = obj_84 - iterRow_Transform3D_sp_26(res, x, y, x.r, x.c, y.c, x.r) - private fun rotateX_Transform3D_sp_0(angle) = - let {s, c2, tmp32, tmp33, tmp34, tmp35, tmp36, tup_51, obj_52} - s = Math.sin(2.51327412) - c2 = Math.cos(2.51327412) - tup_51 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_52 = new Matrix(tup_51, 4, 4) - tmp32 = obj_52 - tmp33 = update_Transform3D_sp_13(tmp32, 1, 1, c2) - tmp34 = -(s) - tmp35 = update_Transform3D_sp_14(tmp33, 1, 2, tmp34) - tmp36 = update_Transform3D_sp_15(tmp35, 2, 1, s) - update_Transform3D_sp_12(tmp36, 2, 2, c2) - private fun rotateY_Transform3D_sp_0(angle) = - let {s1, c3, tmp37, tmp38, tmp39, tmp40, tmp41, tup_49, obj_50} - s1 = Math.sin(3.1415926535) - c3 = Math.cos(3.1415926535) - tup_49 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_50 = new Matrix(tup_49, 4, 4) - tmp37 = obj_50 - tmp38 = update_Transform3D_sp_10(tmp37, 0, 0, c3) - tmp39 = update_Transform3D_sp_16(tmp38, 0, 2, s1) - tmp40 = -(s1) - tmp41 = update_Transform3D_sp_17(tmp39, 2, 0, tmp40) - update_Transform3D_sp_12(tmp41, 2, 2, c3) - private fun rotateZ_Transform3D_sp_0(angle) = - let {s2, c4, tmp42, tmp43, tmp44, tmp45, tmp46, tup_47, obj_48} - s2 = Math.sin(0) - c4 = Math.cos(0) - tup_47 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_48 = new Matrix(tup_47, 4, 4) - tmp42 = obj_48 - tmp43 = update_Transform3D_sp_10(tmp42, 0, 0, c4) - tmp44 = -(s2) - tmp45 = update_Transform3D_sp_18(tmp43, 0, 1, tmp44) - tmp46 = update_Transform3D_sp_19(tmp45, 1, 0, s2) - update_Transform3D_sp_11(tmp46, 1, 1, c4) - private fun scale_Transform3D_sp_0(sx, sy, sz) = - let {tmp29, tmp30, tmp31, tup_68, obj_69, tup_71, obj_72, tup_74, obj_75, tup_77, obj_78} - tup_68 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_69 = new Matrix(tup_68, 4, 4) - tmp29 = obj_69 - tup_71 = [0.4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_72 = new Matrix(tup_71, 4, 4) - tmp30 = obj_72 - tup_74 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_75 = new Matrix(tup_74, 4, 4) - tmp31 = obj_75 - tup_77 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] - obj_78 = new Matrix(tup_77, 4, 4) - obj_78 - private fun transform_Transform3D_sp_0(dx, dy, dz) = - let {tmp26, tmp27, tmp28, tup_55, obj_56, tup_58, obj_59, tup_61, obj_62, tup_64, obj_65} - tup_55 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_56 = new Matrix(tup_55, 4, 4) - tmp26 = obj_56 - tup_58 = [1, 0, 0, 11, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_59 = new Matrix(tup_58, 4, 4) - tmp27 = obj_59 - tup_61 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 0, 0, 0, 0, 1] - obj_62 = new Matrix(tup_61, 4, 4) - tmp28 = obj_62 - tup_64 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] - obj_65 = new Matrix(tup_64, 4, 4) - obj_65 - private fun update_Transform3D_sp_0(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = *(i, m.c) - tmp24 = tmp23 + j - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, tmp24, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_1(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = *(i, m.c) - tmp24 = tmp23 + j - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, tmp24, 1) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_10(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 0 - tmp24 = 0 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 0, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_11(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 4 - tmp24 = 5 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 5, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_12(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 8 - tmp24 = 10 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 10, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_13(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 4 - tmp24 = 5 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 5, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_14(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 4 - tmp24 = 6 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 6, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_15(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 8 - tmp24 = 9 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 9, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_16(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 0 - tmp24 = 2 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 2, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_17(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 8 - tmp24 = 8 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 8, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_18(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 0 - tmp24 = 1 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 1, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_19(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 4 - tmp24 = 4 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 4, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_2(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = *(i, m.c) - tmp24 = tmp23 + j - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, tmp24, 1) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_20(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 0 - tmp24 = 0 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 0, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_21(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 0 - tmp24 = 3 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_22(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 12 - tmp24 = 12 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 12, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_23(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 12 - tmp24 = 13 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 13, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_24(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 12 - tmp24 = 14 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 14, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_25(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 12 - tmp24 = 15 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 15, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_26(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 0 - tmp24 = 0 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 0, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_27(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 1 - tmp24 = 1 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 1, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_28(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 2 - tmp24 = 2 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 2, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_29(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 3 - tmp24 = 3 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_3(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_4} - tmp23 = 0 - tmp24 = 0 - tup_4 = [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - tmp25 = tup_4 - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_30(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_57} - tmp23 = 0 - tmp24 = 3 - tup_57 = [1, 0, 0, 11, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - tmp25 = tup_57 - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_31(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_60} - tmp23 = 4 - tmp24 = 7 - tup_60 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 0, 0, 0, 0, 1] - tmp25 = tup_60 - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_32(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_63} - tmp23 = 8 - tmp24 = 11 - tup_63 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] - tmp25 = tup_63 - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_33(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_70} - tmp23 = 0 - tmp24 = 0 - tup_70 = [0.4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - tmp25 = tup_70 - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_34(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_73} - tmp23 = 4 - tmp24 = 5 - tup_73 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - tmp25 = tup_73 - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_35(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_76} - tmp23 = 8 - tmp24 = 10 - tup_76 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] - tmp25 = tup_76 - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_36(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 3 - tmp24 = 3 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, 1) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_4(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_7} - tmp23 = 4 - tmp24 = 5 - tup_7 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - tmp25 = tup_7 - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_5(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_10} - tmp23 = 8 - tmp24 = 10 - tup_10 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0] - tmp25 = tup_10 - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_6(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_13} - tmp23 = 12 - tmp24 = 15 - tup_13 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - tmp25 = tup_13 - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_7(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 0 - tmp24 = 3 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_8(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 4 - tmp24 = 7 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 7, v) - new Matrix(tmp25, m.r, m.c) - private fun update_Transform3D_sp_9(m, i, j, v) = - let {tmp23, tmp24, tmp25} - tmp23 = 8 - tmp24 = 11 - tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 11, v) - new Matrix(tmp25, m.r, m.c) - private fun zeros_Transform3D_sp_0(r, c) = - let {tmp21, tmp22, tup_1} - tmp21 = 16 - tup_1 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - tmp22 = tup_1 - new Matrix(tmp22, r, c) - private fun zeros_Transform3D_sp_1(r, c) = - let {tmp21, tmp22, tup_42} - tmp21 = 4 - tup_42 = [0, 0, 0, 0] - tmp22 = tup_42 - new Matrix(tmp22, r, c) \ No newline at end of file + tmp8 = k - 1 + iter(tmp7, x, y, colX, i, j, tmp8) + else 0 +fun iter_Transform3D_sp_1(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(0), 1) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_2(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_10(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_100(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_101(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(4), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_102(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_102(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = *(x.arr.(5), y.arr.(4)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_103(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_103(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = *(x.arr.(6), y.arr.(8)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_104(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_104(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = *(x.arr.(7), y.arr.(12)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_105(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_105(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_106(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = *(x.arr.(4), y.arr.(1)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_107(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_107(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(5), y.arr.(5)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_108(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_108(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = *(x.arr.(6), y.arr.(9)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_109(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_109(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = *(x.arr.(7), y.arr.(13)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_110(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_11(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_12(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_110(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_111(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = *(x.arr.(4), y.arr.(2)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_112(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_112(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = *(x.arr.(5), y.arr.(6)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_113(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_113(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(6), y.arr.(10)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_114(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_114(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = *(x.arr.(7), y.arr.(14)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_115(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_115(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_116(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = *(x.arr.(4), y.arr.(3)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_117(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_117(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = *(x.arr.(5), y.arr.(7)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_118(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_118(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = *(x.arr.(6), y.arr.(11)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_119(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_119(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(7), y.arr.(15)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_120(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_12(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_13(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_120(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_121(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(8), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_122(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_122(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = *(x.arr.(9), y.arr.(4)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_123(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_123(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = *(x.arr.(10), y.arr.(8)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_124(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_124(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = *(x.arr.(11), y.arr.(12)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_125(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_125(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_126(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = *(x.arr.(8), y.arr.(1)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_127(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_127(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(9), y.arr.(5)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_128(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_128(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = *(x.arr.(10), y.arr.(9)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_129(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_129(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = *(x.arr.(11), y.arr.(13)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_130(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_13(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(2), 1) + tmp7 = 0 + tmp6 + tmp8 = 1 + iter_Transform3D_sp_14(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_130(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_131(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = *(x.arr.(8), y.arr.(2)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_132(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_132(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = *(x.arr.(9), y.arr.(6)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_133(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_133(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(10), y.arr.(10)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_134(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_134(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = *(x.arr.(11), y.arr.(14)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_135(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_135(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_136(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = *(x.arr.(8), y.arr.(3)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_137(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_137(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = *(x.arr.(9), y.arr.(7)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_138(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_138(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = *(x.arr.(10), y.arr.(11)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_139(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_139(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(11), y.arr.(15)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_140(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_14(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_15(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_140(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_141(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(12), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_142(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_142(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = *(x.arr.(13), y.arr.(4)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_143(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_143(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = *(x.arr.(14), y.arr.(8)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_144(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_144(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = *(x.arr.(15), y.arr.(12)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_145(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_145(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_146(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = *(x.arr.(12), y.arr.(1)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_147(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_147(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(13), y.arr.(5)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_148(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_148(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = *(x.arr.(14), y.arr.(9)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_149(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_149(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = *(x.arr.(15), y.arr.(13)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_150(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_15(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_150(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_151(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = *(x.arr.(12), y.arr.(2)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_152(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_152(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = *(x.arr.(13), y.arr.(6)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_153(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_153(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(14), y.arr.(10)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_154(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_154(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = *(x.arr.(15), y.arr.(14)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_155(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_155(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_156(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = *(x.arr.(12), y.arr.(3)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_157(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_157(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = *(x.arr.(13), y.arr.(7)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_158(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_158(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = *(x.arr.(14), y.arr.(11)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_159(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_159(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(15), y.arr.(15)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_160(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_16(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_17(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_160(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_161(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(0), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_162(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_162(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(1), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_163(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_163(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(2), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_164(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_164(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(3), 1) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_165(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_165(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_166(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(4), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_167(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_167(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(5), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_168(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_168(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(6), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_169(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_169(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(7), 1) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_170(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_17(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_18(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_170(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_171(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(8), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_172(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_172(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(9), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_173(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_173(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(10), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_174(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_174(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(11), 1) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_175(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_175(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_176(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(12), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_177(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_177(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(13), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_178(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_178(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(14), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_179(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_179(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(15), 1) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_180(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_18(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = 0 + tmp7 = 0 + tmp8 = 1 + iter_Transform3D_sp_19(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_180(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_181(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(0), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_182(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_182(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(1), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_183(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_183(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(2), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_184(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_184(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(3), y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_185(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_185(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_186(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(4), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_187(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_187(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(5), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_188(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_188(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(6), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_189(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_189(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(7), y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_190(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_19(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(3), 1) + tmp7 = 0 + tmp6 + tmp8 = 0 + iter_Transform3D_sp_20(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_190(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_191(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(8), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_192(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_192(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(9), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_193(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_193(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(10), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_194(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_194(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(11), y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_195(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_195(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_196(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(12), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_197(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_197(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(x.arr.(13), y.arr.(1)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_198(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_198(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(x.arr.(14), y.arr.(2)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_199(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_199(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(x.arr.(15), y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_200(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_2(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 2 + iter_Transform3D_sp_3(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_20(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_200(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_201(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(0.4, y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_202(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_202(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 2 + iter_Transform3D_sp_203(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_203(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_204(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_204(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_205(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_205(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_206(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_207(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_207(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(0.19, y.arr.(1)) + tmp7 = 0 + tmp6 + tmp8 = 2 + iter_Transform3D_sp_208(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_208(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_209(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_209(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_210(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_21(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(4), 1) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_22(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_210(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_211(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_212(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_212(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_213(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_213(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(0.19, y.arr.(2)) + tmp7 = 0 + tmp6 + tmp8 = 1 + iter_Transform3D_sp_214(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_214(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_215(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_215(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_216(sum, x, y, colX, i, j, k) = 1 +fun iter_Transform3D_sp_217(sum, x, y, colX, i, j, k) = 1 +fun iter_Transform3D_sp_218(sum, x, y, colX, i, j, k) = 1 +fun iter_Transform3D_sp_219(sum, x, y, colX, i, j, k) = 1 +fun iter_Transform3D_sp_22(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 2 + iter_Transform3D_sp_23(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_220(sum, x, y, colX, i, j, k) = 1 +fun iter_Transform3D_sp_221(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(1, y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_222(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_222(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 2 + iter_Transform3D_sp_223(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_223(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_224(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_224(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(11, y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_225(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_225(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_226(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_227(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_227(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = *(1, y.arr.(1)) + tmp7 = 0 + tmp6 + tmp8 = 2 + iter_Transform3D_sp_228(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_228(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_229(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_229(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(4, y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_230(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_23(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_24(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_230(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_231(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_232(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_232(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_233(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_233(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = *(1, y.arr.(2)) + tmp7 = 0 + tmp6 + tmp8 = 1 + iter_Transform3D_sp_234(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_234(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(51, y.arr.(3)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_235(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_235(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_236(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_237(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_237(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 1 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_238(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_238(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 2 + tmp5 = 2 + tmp6 = 0 + tmp7 = 0 + tmp8 = 1 + iter_Transform3D_sp_239(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_239(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 3 + tmp5 = 3 + tmp6 = *(1, y.arr.(3)) + tmp7 = 0 + tmp6 + tmp8 = 0 + iter_Transform3D_sp_240(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_24(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_25(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_240(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_25(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_26(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_27(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_27(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(5), 1) + tmp7 = 0 + tmp6 + tmp8 = 2 + iter_Transform3D_sp_28(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_28(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_29(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_29(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_30(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_3(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_4(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_30(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_31(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_32(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_32(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_33(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_33(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(6), 1) + tmp7 = 0 + tmp6 + tmp8 = 1 + iter_Transform3D_sp_34(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_34(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_35(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_35(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_36(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 4 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_37(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_37(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 5 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_38(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_38(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 6 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = 0 + tmp7 = 0 + tmp8 = 1 + iter_Transform3D_sp_39(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_39(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 4 + tmp1 = 8 + tmp2 = 7 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(7), 1) + tmp7 = 0 + tmp6 + tmp8 = 0 + iter_Transform3D_sp_40(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_4(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_5(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_40(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_41(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(8), 1) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_42(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_42(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 2 + iter_Transform3D_sp_43(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_43(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_44(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_44(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_45(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_45(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_46(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_47(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_47(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(9), 1) + tmp7 = 0 + tmp6 + tmp8 = 2 + iter_Transform3D_sp_48(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_48(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_49(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_49(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_50(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_5(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_50(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_51(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_52(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_52(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_53(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_53(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(10), 1) + tmp7 = 0 + tmp6 + tmp8 = 1 + iter_Transform3D_sp_54(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_54(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_55(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_55(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_56(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 8 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_57(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_57(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 9 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_58(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_58(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 10 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = 0 + tmp7 = 0 + tmp8 = 1 + iter_Transform3D_sp_59(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_59(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 8 + tmp1 = 12 + tmp2 = 11 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(11), 1) + tmp7 = 0 + tmp6 + tmp8 = 0 + iter_Transform3D_sp_60(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_6(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_7(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_60(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_61(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(12), 1) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_62(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_62(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 2 + iter_Transform3D_sp_63(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_63(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_64(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_64(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_65(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_65(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_66(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_67(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_67(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(13), 1) + tmp7 = 0 + tmp6 + tmp8 = 2 + iter_Transform3D_sp_68(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_68(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_69(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_69(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_70(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_7(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(1), 1) + tmp7 = 0 + tmp6 + tmp8 = 2 + iter_Transform3D_sp_8(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_70(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_71(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_72(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_72(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_73(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_73(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(14), 1) + tmp7 = 0 + tmp6 + tmp8 = 1 + iter_Transform3D_sp_74(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_74(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_75(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_75(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_76(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 12 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = 0 + tmp7 = 0 + tmp8 = 3 + iter_Transform3D_sp_77(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_77(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 13 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = 0 + tmp7 = 0 + tmp8 = 2 + iter_Transform3D_sp_78(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_78(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 14 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = 0 + tmp7 = 0 + tmp8 = 1 + iter_Transform3D_sp_79(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_79(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 12 + tmp1 = 16 + tmp2 = 15 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(15), 1) + tmp7 = 0 + tmp6 + tmp8 = 0 + iter_Transform3D_sp_80(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_8(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 1 + iter_Transform3D_sp_9(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_80(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_81(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 0 + tmp6 = *(x.arr.(0), y.arr.(0)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_82(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_82(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 4 + tmp6 = *(x.arr.(1), y.arr.(4)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_83(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_83(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 8 + tmp6 = *(x.arr.(2), y.arr.(8)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_84(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_84(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 12 + tmp6 = *(x.arr.(3), y.arr.(12)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_85(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_85(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_86(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 1 + tmp6 = *(x.arr.(0), y.arr.(1)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_87(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_87(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 5 + tmp6 = *(x.arr.(1), y.arr.(5)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_88(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_88(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 9 + tmp6 = *(x.arr.(2), y.arr.(9)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_89(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_89(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = *(x.arr.(3), y.arr.(13)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_90(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_9(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 13 + tmp6 = 0 + tmp7 = sum + 0 + tmp8 = 0 + iter_Transform3D_sp_10(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_90(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_91(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 2 + tmp6 = *(x.arr.(0), y.arr.(2)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_92(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_92(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 6 + tmp6 = *(x.arr.(1), y.arr.(6)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_93(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_93(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 10 + tmp6 = *(x.arr.(2), y.arr.(10)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_94(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_94(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 14 + tmp6 = *(x.arr.(3), y.arr.(14)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_95(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_95(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = false + sum +fun iter_Transform3D_sp_96(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 0 + tmp3 = 0 + tmp4 = 0 + tmp5 = 3 + tmp6 = *(x.arr.(0), y.arr.(3)) + tmp7 = 0 + tmp6 + tmp8 = 3 + iter_Transform3D_sp_97(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_97(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 1 + tmp3 = 1 + tmp4 = 4 + tmp5 = 7 + tmp6 = *(x.arr.(1), y.arr.(7)) + tmp7 = sum + tmp6 + tmp8 = 2 + iter_Transform3D_sp_98(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_98(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 2 + tmp3 = 2 + tmp4 = 8 + tmp5 = 11 + tmp6 = *(x.arr.(2), y.arr.(11)) + tmp7 = sum + tmp6 + tmp8 = 1 + iter_Transform3D_sp_99(tmp7, x, y, colX, i, j, tmp8) +fun iter_Transform3D_sp_99(sum, x, y, colX, i, j, k) = + let {scrut, tmp, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8} + scrut = true + tmp = 0 + tmp1 = 4 + tmp2 = 3 + tmp3 = 3 + tmp4 = 12 + tmp5 = 15 + tmp6 = *(x.arr.(3), y.arr.(15)) + tmp7 = sum + tmp6 + tmp8 = 0 + iter_Transform3D_sp_100(tmp7, x, y, colX, i, j, tmp8) +fun model_Transform3D_sp_0(local, position, scaling, rotation) = + let {rot, res1, tmp47, tmp48, tmp49, tmp50, tmp51, tmp52, tmp53, tmp54, tmp55, tmp56, tmp57, tmp58, tup_53, obj_54, tup_66, obj_67, tup_79, obj_80} + tmp47 = rotateZ_Transform3D_sp_0(rotation.2) + tmp48 = rotateY_Transform3D_sp_0(rotation.1) + tmp49 = rotateX_Transform3D_sp_0(rotation.0) + tup_53 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_54 = new Matrix(tup_53, 4, 4) + tmp50 = obj_54 + tmp51 = multiply_Transform3D_sp_0(tmp49, tmp50) + tmp52 = multiply_Transform3D_sp_1(tmp48, tmp51) + rot = multiply_Transform3D_sp_1(tmp47, tmp52) + tup_66 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] + obj_67 = new Matrix(tup_66, 4, 4) + tmp53 = obj_67 + tup_79 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] + obj_80 = new Matrix(tup_79, 4, 4) + tmp54 = obj_80 + tmp55 = [local.0, local.1, local.2, 1] + tmp56 = new Matrix(tmp55, 4, 1) + tmp57 = multiply_Transform3D_sp_4(tmp54, tmp56) + tmp58 = multiply_Transform3D_sp_3(rot, tmp57) + res1 = multiply_Transform3D_sp_5(tmp53, tmp58) + [res1.arr.0, res1.arr.1, res1.arr.2] +fun multiply_Transform3D_sp_0(x, y) = + let {res, tup_38, obj_39} + tup_38 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + obj_39 = new Matrix(tup_38, 4, 4) + res = obj_39 + iterRow_Transform3D_sp_1(res, x, y, x.r, x.c, y.c, x.r) +fun multiply_Transform3D_sp_1(x, y) = + let {res, tup_40, obj_41} + tup_40 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + obj_41 = new Matrix(tup_40, 4, 4) + res = obj_41 + iterRow_Transform3D_sp_6(res, x, y, x.r, x.c, y.c, x.r) +fun multiply_Transform3D_sp_2(x, y) = + let {res, tup_43, obj_44} + tup_43 = [0, 0, 0, 0] + obj_44 = new Matrix(tup_43, 4, 1) + res = obj_44 + iterRow_Transform3D_sp_11(res, x, y, x.r, x.c, y.c, x.r) +fun multiply_Transform3D_sp_3(x, y) = + let {res, tup_45, obj_46} + tup_45 = [0, 0, 0, 0] + obj_46 = new Matrix(tup_45, 4, 1) + res = obj_46 + iterRow_Transform3D_sp_16(res, x, y, x.r, x.c, y.c, x.r) +fun multiply_Transform3D_sp_4(x, y) = + let {res, tup_81, obj_82} + tup_81 = [0, 0, 0, 0] + obj_82 = new Matrix(tup_81, 4, 1) + res = obj_82 + iterRow_Transform3D_sp_21(res, x, y, x.r, x.c, y.c, x.r) +fun multiply_Transform3D_sp_5(x, y) = + let {res, tup_83, obj_84} + tup_83 = [0, 0, 0, 0] + obj_84 = new Matrix(tup_83, 4, 1) + res = obj_84 + iterRow_Transform3D_sp_26(res, x, y, x.r, x.c, y.c, x.r) +fun rotateX_Transform3D_sp_0(angle) = + let {s, c2, tmp32, tmp33, tmp34, tmp35, tmp36, tup_51, obj_52} + s = Math.sin(2.51327412) + c2 = Math.cos(2.51327412) + tup_51 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_52 = new Matrix(tup_51, 4, 4) + tmp32 = obj_52 + tmp33 = update_Transform3D_sp_13(tmp32, 1, 1, c2) + tmp34 = -(s) + tmp35 = update_Transform3D_sp_14(tmp33, 1, 2, tmp34) + tmp36 = update_Transform3D_sp_15(tmp35, 2, 1, s) + update_Transform3D_sp_12(tmp36, 2, 2, c2) +fun rotateY_Transform3D_sp_0(angle) = + let {s1, c3, tmp37, tmp38, tmp39, tmp40, tmp41, tup_49, obj_50} + s1 = Math.sin(3.1415926535) + c3 = Math.cos(3.1415926535) + tup_49 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_50 = new Matrix(tup_49, 4, 4) + tmp37 = obj_50 + tmp38 = update_Transform3D_sp_10(tmp37, 0, 0, c3) + tmp39 = update_Transform3D_sp_16(tmp38, 0, 2, s1) + tmp40 = -(s1) + tmp41 = update_Transform3D_sp_17(tmp39, 2, 0, tmp40) + update_Transform3D_sp_12(tmp41, 2, 2, c3) +fun rotateZ_Transform3D_sp_0(angle) = + let {s2, c4, tmp42, tmp43, tmp44, tmp45, tmp46, tup_47, obj_48} + s2 = Math.sin(0) + c4 = Math.cos(0) + tup_47 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_48 = new Matrix(tup_47, 4, 4) + tmp42 = obj_48 + tmp43 = update_Transform3D_sp_10(tmp42, 0, 0, c4) + tmp44 = -(s2) + tmp45 = update_Transform3D_sp_18(tmp43, 0, 1, tmp44) + tmp46 = update_Transform3D_sp_19(tmp45, 1, 0, s2) + update_Transform3D_sp_11(tmp46, 1, 1, c4) +fun scale_Transform3D_sp_0(sx, sy, sz) = + let {tmp29, tmp30, tmp31, tup_68, obj_69, tup_71, obj_72, tup_74, obj_75, tup_77, obj_78} + tup_68 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_69 = new Matrix(tup_68, 4, 4) + tmp29 = obj_69 + tup_71 = [0.4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_72 = new Matrix(tup_71, 4, 4) + tmp30 = obj_72 + tup_74 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_75 = new Matrix(tup_74, 4, 4) + tmp31 = obj_75 + tup_77 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] + obj_78 = new Matrix(tup_77, 4, 4) + obj_78 +fun transform_Transform3D_sp_0(dx, dy, dz) = + let {tmp26, tmp27, tmp28, tup_55, obj_56, tup_58, obj_59, tup_61, obj_62, tup_64, obj_65} + tup_55 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_56 = new Matrix(tup_55, 4, 4) + tmp26 = obj_56 + tup_58 = [1, 0, 0, 11, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + obj_59 = new Matrix(tup_58, 4, 4) + tmp27 = obj_59 + tup_61 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 0, 0, 0, 0, 1] + obj_62 = new Matrix(tup_61, 4, 4) + tmp28 = obj_62 + tup_64 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] + obj_65 = new Matrix(tup_64, 4, 4) + obj_65 +fun update_Transform3D_sp_0(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = *(i, m.c) + tmp24 = tmp23 + j + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, tmp24, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_1(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = *(i, m.c) + tmp24 = tmp23 + j + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, tmp24, 1) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_10(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 0 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 0, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_11(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 4 + tmp24 = 5 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 5, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_12(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 8 + tmp24 = 10 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 10, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_13(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 4 + tmp24 = 5 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 5, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_14(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 4 + tmp24 = 6 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 6, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_15(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 8 + tmp24 = 9 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 9, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_16(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 2 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 2, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_17(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 8 + tmp24 = 8 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 8, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_18(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 1 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 1, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_19(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 4 + tmp24 = 4 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 4, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_2(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = *(i, m.c) + tmp24 = tmp23 + j + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, tmp24, 1) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_20(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 0 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 0, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_21(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 3 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_22(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 12 + tmp24 = 12 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 12, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_23(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 12 + tmp24 = 13 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 13, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_24(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 12 + tmp24 = 14 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 14, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_25(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 12 + tmp24 = 15 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 15, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_26(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 0 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 0, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_27(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 1 + tmp24 = 1 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 1, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_28(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 2 + tmp24 = 2 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 2, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_29(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 3 + tmp24 = 3 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_3(m, i, j, v) = + let {tmp23, tmp24, tmp25, tup_4} + tmp23 = 0 + tmp24 = 0 + tup_4 = [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + tmp25 = tup_4 + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_30(m, i, j, v) = + let {tmp23, tmp24, tmp25, tup_57} + tmp23 = 0 + tmp24 = 3 + tup_57 = [1, 0, 0, 11, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_57 + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_31(m, i, j, v) = + let {tmp23, tmp24, tmp25, tup_60} + tmp23 = 4 + tmp24 = 7 + tup_60 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_60 + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_32(m, i, j, v) = + let {tmp23, tmp24, tmp25, tup_63} + tmp23 = 8 + tmp24 = 11 + tup_63 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] + tmp25 = tup_63 + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_33(m, i, j, v) = + let {tmp23, tmp24, tmp25, tup_70} + tmp23 = 0 + tmp24 = 0 + tup_70 = [0.4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_70 + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_34(m, i, j, v) = + let {tmp23, tmp24, tmp25, tup_73} + tmp23 = 4 + tmp24 = 5 + tup_73 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_73 + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_35(m, i, j, v) = + let {tmp23, tmp24, tmp25, tup_76} + tmp23 = 8 + tmp24 = 10 + tup_76 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] + tmp25 = tup_76 + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_36(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 3 + tmp24 = 3 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, 1) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_4(m, i, j, v) = + let {tmp23, tmp24, tmp25, tup_7} + tmp23 = 4 + tmp24 = 5 + tup_7 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + tmp25 = tup_7 + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_5(m, i, j, v) = + let {tmp23, tmp24, tmp25, tup_10} + tmp23 = 8 + tmp24 = 10 + tup_10 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0] + tmp25 = tup_10 + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_6(m, i, j, v) = + let {tmp23, tmp24, tmp25, tup_13} + tmp23 = 12 + tmp24 = 15 + tup_13 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_13 + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_7(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 0 + tmp24 = 3 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_8(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 4 + tmp24 = 7 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 7, v) + new Matrix(tmp25, m.r, m.c) +fun update_Transform3D_sp_9(m, i, j, v) = + let {tmp23, tmp24, tmp25} + tmp23 = 8 + tmp24 = 11 + tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 11, v) + new Matrix(tmp25, m.r, m.c) +fun zeros_Transform3D_sp_0(r, c) = + let {tmp21, tmp22, tup_1} + tmp21 = 16 + tup_1 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + tmp22 = tup_1 + new Matrix(tmp22, r, c) +fun zeros_Transform3D_sp_1(r, c) = + let {tmp21, tmp22, tup_42} + tmp21 = 4 + tup_42 = [0, 0, 0, 0] + tmp22 = tup_42 + new Matrix(tmp22, r, c) \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript/block-staging/Hygiene.mls b/hkmc2/shared/src/test/mlscript/block-staging/Hygiene.mls index dbc8e81958..6913949ef1 100644 --- a/hkmc2/shared/src/test/mlscript/block-staging/Hygiene.mls +++ b/hkmc2/shared/src/test/mlscript/block-staging/Hygiene.mls @@ -21,5 +21,5 @@ Foo."foo_gen"(mkLit(0)) print(Foo."cache$Foo") //│ > module Foo with //│ > () -//│ > private fun foo_Foo_sp_2(x) = 1 +//│ > fun foo_Foo_sp_2(x) = 1 diff --git a/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls b/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls index 0c9b51d79d..95f7b9ad94 100644 --- a/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls +++ b/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls @@ -56,17 +56,17 @@ print(Simple."cache$Simple") //│ > dyn = pyth_Simple_sp_1(n, 2) //│ > tmp10 = *(dyn, 2) //│ > fib(tmp10) -//│ > private fun f_Simple_sp_0(x, y) = 4 -//│ > private fun fib_Simple_sp_0(n) = 3 -//│ > private fun fib_Simple_sp_1(n) = 2 -//│ > private fun fib_Simple_sp_2(n) = 1 -//│ > private fun fib_Simple_sp_3(n) = 1 -//│ > private fun pyth_Simple_sp_0(x, y) = 20 -//│ > private fun pyth_Simple_sp_1(x, y) = -//│ > let {tmp6, tmp7} -//│ > tmp6 = Simple__Legacy."NonStaged$Simple".sq(x) -//│ > tmp7 = 4 -//│ > tmp6 + 4 +//│ > fun f_Simple_sp_0(x, y) = 4 +//│ > fun fib_Simple_sp_0(n) = 3 +//│ > fun fib_Simple_sp_1(n) = 2 +//│ > fun fib_Simple_sp_2(n) = 1 +//│ > fun fib_Simple_sp_3(n) = 1 +//│ > fun pyth_Simple_sp_0(x, y) = 20 +//│ > fun pyth_Simple_sp_1(x, y) = +//│ > let {tmp6, tmp7} +//│ > tmp6 = Simple__Legacy."NonStaged$Simple".sq(x) +//│ > tmp7 = 4 +//│ > tmp6 + 4 class C(val x) @@ -97,16 +97,16 @@ print(If."cache$If") //│ > module If with //│ > () //│ > fun test() = "C(2) C else " -//│ > private fun f_If_sp_0(x) = "C(2) " -//│ > private fun f_If_sp_1(x) = "C " -//│ > private fun f_If_sp_2(x) = "else " -//│ > private fun test2_If_sp_0(x, y) = -//│ > let {tmp6} -//│ > if y is -//│ > 1 then 1 -//│ > else -//│ > tmp6 = 2 -//│ > 4 +//│ > fun f_If_sp_0(x) = "C(2) " +//│ > fun f_If_sp_1(x) = "C " +//│ > fun f_If_sp_2(x) = "else " +//│ > fun test2_If_sp_0(x, y) = +//│ > let {tmp6} +//│ > if y is +//│ > 1 then 1 +//│ > else +//│ > tmp6 = 2 +//│ > 4 class C(val n) staged module If2 with @@ -133,13 +133,13 @@ print(If2."cache$If2") //│ > tmp2 = If2__Legacy."C$If2"(dyn) //│ > f_If2_sp_1(tmp2) //│ > fun test3() = 1 -//│ > private fun f_If2_sp_0(x) = 3 -//│ > private fun f_If2_sp_1(x) = -//│ > let {y, tmp} -//│ > y = x.n -//│ > tmp = runtime.Unit -//│ > y + 1 -//│ > private fun f_If2_sp_2(x) = 1 +//│ > fun f_If2_sp_0(x) = 3 +//│ > fun f_If2_sp_1(x) = +//│ > let {y, tmp} +//│ > y = x.n +//│ > tmp = runtime.Unit +//│ > y + 1 +//│ > fun f_If2_sp_2(x) = 1 staged module LinearAlgebra with fun _dot(v1, v2, n, acc) = @@ -158,32 +158,32 @@ print(LinearAlgebra."cache$LinearAlgebra") //│ > tmp3 = [x, 1, 2] //│ > tmp4 = [3, 4, 1] //│ > dot_LinearAlgebra_sp_0(tmp3, tmp4) -//│ > private fun _dot_LinearAlgebra_sp_0(v1, v2, n, acc) = -//│ > let {scrut, tmp, tmp1, tmp2} -//│ > scrut = false -//│ > tmp = 1 -//│ > tmp1 = *(v1.(0), 3) -//│ > tmp2 = tmp1 + 0 -//│ > _dot_LinearAlgebra_sp_1(v1, v2, tmp, tmp2) -//│ > private fun _dot_LinearAlgebra_sp_1(v1, v2, n, acc) = -//│ > let {scrut, tmp, tmp1, tmp2} -//│ > scrut = false -//│ > tmp = 2 -//│ > tmp1 = 4 -//│ > tmp2 = 4 + acc -//│ > _dot_LinearAlgebra_sp_2(v1, v2, tmp, tmp2) -//│ > private fun _dot_LinearAlgebra_sp_2(v1, v2, n, acc) = -//│ > let {scrut, tmp, tmp1, tmp2} -//│ > scrut = false -//│ > tmp = 3 -//│ > tmp1 = 2 -//│ > tmp2 = 2 + acc -//│ > _dot_LinearAlgebra_sp_3(v1, v2, tmp, tmp2) -//│ > private fun _dot_LinearAlgebra_sp_3(v1, v2, n, acc) = -//│ > let {scrut, tmp, tmp1, tmp2} -//│ > scrut = true -//│ > acc -//│ > private fun dot_LinearAlgebra_sp_0(v1, v2) = _dot_LinearAlgebra_sp_0(v1, v2, 0, 0) +//│ > fun _dot_LinearAlgebra_sp_0(v1, v2, n, acc) = +//│ > let {scrut, tmp, tmp1, tmp2} +//│ > scrut = false +//│ > tmp = 1 +//│ > tmp1 = *(v1.(0), 3) +//│ > tmp2 = tmp1 + 0 +//│ > _dot_LinearAlgebra_sp_1(v1, v2, tmp, tmp2) +//│ > fun _dot_LinearAlgebra_sp_1(v1, v2, n, acc) = +//│ > let {scrut, tmp, tmp1, tmp2} +//│ > scrut = false +//│ > tmp = 2 +//│ > tmp1 = 4 +//│ > tmp2 = 4 + acc +//│ > _dot_LinearAlgebra_sp_2(v1, v2, tmp, tmp2) +//│ > fun _dot_LinearAlgebra_sp_2(v1, v2, n, acc) = +//│ > let {scrut, tmp, tmp1, tmp2} +//│ > scrut = false +//│ > tmp = 3 +//│ > tmp1 = 2 +//│ > tmp2 = 2 + acc +//│ > _dot_LinearAlgebra_sp_3(v1, v2, tmp, tmp2) +//│ > fun _dot_LinearAlgebra_sp_3(v1, v2, n, acc) = +//│ > let {scrut, tmp, tmp1, tmp2} +//│ > scrut = true +//│ > acc +//│ > fun dot_LinearAlgebra_sp_0(v1, v2) = _dot_LinearAlgebra_sp_0(v1, v2, 0, 0) staged class L1(val y) with fun call(x) = x + 2 + y @@ -222,48 +222,48 @@ print(Dispatching."cache$Dispatching") //│ > tmp3 = new L3.class(3) //│ > m = pick_Dispatching_sp_2(tmp2, tmp3, b) //│ > twice_Dispatching_sp_3(m, 5) -//│ > private fun pick_Dispatching_sp_0(x, y, b) = x -//│ > private fun pick_Dispatching_sp_1(x, y, b) = y -//│ > private fun pick_Dispatching_sp_2(x, y, b) = -//│ > if b is -//│ > true then x -//│ > else y -//│ > private fun test_Dispatching_sp_0(b) = 9 -//│ > private fun test_Dispatching_sp_1(b) = 29 -//│ > private fun twice_Dispatching_sp_0(f, x) = 11 -//│ > private fun twice_Dispatching_sp_1(f, x) = 9 -//│ > private fun twice_Dispatching_sp_2(f, x) = 29 -//│ > private fun twice_Dispatching_sp_3(f, x) = -//│ > let {tmp} -//│ > if f is -//│ > L2 then -//│ > tmp = f.call_L2_sp_0(x) -//│ > L3 then -//│ > tmp = f.call_L3_sp_0(x) -//│ > if f is -//│ > L2 then f.call_L2_sp_2(tmp) -//│ > L3 then f.call_L3_sp_2(tmp) +//│ > fun pick_Dispatching_sp_0(x, y, b) = x +//│ > fun pick_Dispatching_sp_1(x, y, b) = y +//│ > fun pick_Dispatching_sp_2(x, y, b) = +//│ > if b is +//│ > true then x +//│ > else y +//│ > fun test_Dispatching_sp_0(b) = 9 +//│ > fun test_Dispatching_sp_1(b) = 29 +//│ > fun twice_Dispatching_sp_0(f, x) = 11 +//│ > fun twice_Dispatching_sp_1(f, x) = 9 +//│ > fun twice_Dispatching_sp_2(f, x) = 29 +//│ > fun twice_Dispatching_sp_3(f, x) = +//│ > let {tmp} +//│ > if f is +//│ > L2 then +//│ > tmp = call_L2_sp_0(f, x) +//│ > L3 then +//│ > tmp = call_L3_sp_0(f, x) +//│ > if f is +//│ > L2 then call_L2_sp_2(f, tmp) +//│ > L3 then call_L3_sp_2(f, tmp) print(L1.class."class$cache$L1") print(L2.class."class$cache$L2") print(L3.class."class$cache$L3") //│ > class L1(val y) with //│ > () -//│ > private fun call_L1_sp_0(x) = 8 -//│ > private fun call_L1_sp_1(x) = 11 +//│ > fun call_L1_sp_0(self, x) = 8 +//│ > fun call_L1_sp_1(self, x) = 11 //│ > class L2(val y) with //│ > () -//│ > private fun call_L2_sp_0(x) = 7 -//│ > private fun call_L2_sp_1(x) = 9 -//│ > private fun call_L2_sp_2(x) = x + 2 +//│ > fun call_L2_sp_0(self, x) = 7 +//│ > fun call_L2_sp_1(self, x) = 9 +//│ > fun call_L2_sp_2(self, x) = x + 2 //│ > class L3(val y) with //│ > () -//│ > private fun call_L3_sp_0(x) = 13 -//│ > private fun call_L3_sp_1(x) = 29 -//│ > private fun call_L3_sp_2(x) = -//│ > let {tmp1} -//│ > tmp1 = *(x, 2) -//│ > tmp1 + 3 +//│ > fun call_L3_sp_0(self, x) = 13 +//│ > fun call_L3_sp_1(self, x) = 29 +//│ > fun call_L3_sp_2(self, x) = +//│ > let {tmp1} +//│ > tmp1 = *(x, 2) +//│ > tmp1 + 3 staged class Bar(val x) with fun bar() = x @@ -294,17 +294,17 @@ This."test2_gen"(mkLit(1)) print(This."cache$This") //│ > module This with //│ > () -//│ > private fun test2_This_sp_0(y) = 2 -//│ > private fun test_This_sp_0(x) = 3 +//│ > fun test2_This_sp_0(y) = 2 +//│ > fun test_This_sp_0(x) = 3 print(A.class."class$cache$A") print(B.class."class$cache$B") //│ > class A(val x) with //│ > () -//│ > private fun f_A_sp_0(y) = 2 +//│ > fun f_A_sp_0(self, y) = 2 //│ > class B(val x) with //│ > () -//│ > private fun f_B_sp_0(y) = 3 +//│ > fun f_B_sp_0(self, y) = 3 staged class B(val x, val y) with val z = x + y @@ -365,7 +365,7 @@ M."cache$M" //│ () \ //│ fun f(x, y) = *(x, y) \ //│ fun g(y) = f_M_sp_0(2, y) \ -//│ private fun f_M_sp_0(x, y) = *(2, y) +//│ fun f_M_sp_0(x, y) = *(2, y) staged module M with fun f(x) = x.2 diff --git a/hkmc2/shared/src/test/mlscript/block-staging/SpecializeTest.mls b/hkmc2/shared/src/test/mlscript/block-staging/SpecializeTest.mls index 57fc53f28b..09175c2221 100644 --- a/hkmc2/shared/src/test/mlscript/block-staging/SpecializeTest.mls +++ b/hkmc2/shared/src/test/mlscript/block-staging/SpecializeTest.mls @@ -27,7 +27,7 @@ print(M."cache$M") //│ > let {y} //│ > y = *(x, 2) //│ > y -//│ > private fun f_M_sp_0(x) = 4 +//│ > fun f_M_sp_0(x) = 4 staged module Clash with From d9b8a02e21a01031d547af208bf45a204e1ecdb5 Mon Sep 17 00:00:00 2001 From: NeilKleistGao Date: Thu, 4 Jun 2026 16:31:00 +0800 Subject: [PATCH 9/9] WIP: Some fix --- .../mlscript-compile/SpecializeHelpers.mls | 17 +- .../staging/out/CombinedModule.mls | 22 +- .../staging/out/LinkingGeneratedClasses.mls | 22 +- .../staging/out/StagedClass.mls | 15 +- .../staging/out/StagedRegExp.mls | 900 ++++++++---------- .../staging/out/Transform3D.mls | 258 ++--- .../test/mlscript/block-staging/ShapeProp.mls | 4 +- 7 files changed, 507 insertions(+), 731 deletions(-) diff --git a/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls b/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls index f57f5e291b..bd4f81e439 100644 --- a/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls +++ b/hkmc2/shared/src/test/mlscript-compile/SpecializeHelpers.mls @@ -61,7 +61,10 @@ class Ctx( staticCallCtx.set(key, entry) this fun clone = Ctx(new Map(ctx), new Map(valDefnCtx), new Map(staticCallCtx), allocs, thisShape) - fun clearCtx = Ctx(new Map(), new Map(), new Map(staticCallCtx), allocs, thisShape) + // For propagation of instantiation of derived class, + // we need to keep track of fields defined in parent class, + // which is stored in valDefnCtx + fun clearCtx = Ctx(new Map(), valDefnCtx, new Map(staticCallCtx), allocs, thisShape) fun sub(other: Ctx) = let res = new Map() fun otherIsBot(ps) = @@ -360,13 +363,9 @@ fun sorCall(ctx, r, f, args, argShapes) = if f is let genMap = value.(mapPropName) not (genMap is undefined) and let f_gen = genMap.get(fld) - not (f_gen is Runtime.Unit) and // staged function + not (f_gen is Runtime.Unit) then // staged function let res = f_gen(...argShapes) - staticSet(res.1) then - let v2p = shapeset2path(res.1, ctx.allocs) - [v2p.0, v2p.1, res.1] - else - [End(), Call(Select(ValueThis(ModuleSymbol(name, value, redir)), Symbol(res.0)), args), res.1] + [End(), Call(Select(ValueThis(ModuleSymbol(name, value, redir)), Symbol(res.0)), args), res.1] else throw Error("module " + name + " is staged but function " + fld + " is not found in generator map") argShapes.every(staticSet) and // non staged function and params known @@ -603,8 +602,8 @@ fun specializeName(cache, funName, isMethod, ps, shapes) = fun isStaticShapePath(s: Shape) = if s is Lit(_) then true - Arr(shapes) then shapes.every(x => x is Lit) - Class(_, fields) then fields.every(x => x is Lit) + // Arr(shapes) then shapes.every(x => x is Lit) + // Class(_, fields) then fields.every(x => x is Lit) else false fun isStaticSetPath(ss: ShapeSet) = diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls index a60020a6f5..1938f86190 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/CombinedModule.mls @@ -52,17 +52,14 @@ module CombinedModule with module LinkingGeneratedClasses with class D fun f() = - let {obj_3} - obj_3 = new LinkingGeneratedClasses__Legacy."Function$1$LinkingGeneratedClasses"() - obj_3 + let {tmp1} + tmp1 = new LinkingGeneratedClasses__Legacy."Function$1$LinkingGeneratedClasses"() + tmp1 fun g() = - let {obj_4} - obj_4 = new LinkingGeneratedClasses__Legacy."Function$$LinkingGeneratedClasses"() - obj_4 - fun test1 = - let {obj_1} - obj_1 = new LinkingGeneratedClasses__Legacy."C$LinkingGeneratedClasses"() - obj_1 + let {tmp2} + tmp2 = new LinkingGeneratedClasses__Legacy."Function$$LinkingGeneratedClasses"() + tmp2 + fun test1 = new LinkingGeneratedClasses__Legacy."C$LinkingGeneratedClasses"() fun test2(x) = let {tmp} if x is @@ -70,10 +67,7 @@ module CombinedModule with tmp = new S() f_S_sp_0(tmp, 1) else new S() - fun test3 = - let {obj_2} - obj_2 = new D() - obj_2 + fun test3 = new D() open CombinedModule open SimpleStagedExample open LinkingGeneratedClasses diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls index c318975d60..3fb1a5a4e9 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/LinkingGeneratedClasses.mls @@ -5,17 +5,14 @@ class S with module LinkingGeneratedClasses with class D fun f() = - let {obj_3} - obj_3 = new LinkingGeneratedClasses__Legacy."Function$1$LinkingGeneratedClasses"() - obj_3 + let {tmp1} + tmp1 = new LinkingGeneratedClasses__Legacy."Function$1$LinkingGeneratedClasses"() + tmp1 fun g() = - let {obj_4} - obj_4 = new LinkingGeneratedClasses__Legacy."Function$$LinkingGeneratedClasses"() - obj_4 - fun test1 = - let {obj_1} - obj_1 = new LinkingGeneratedClasses__Legacy."C$LinkingGeneratedClasses"() - obj_1 + let {tmp2} + tmp2 = new LinkingGeneratedClasses__Legacy."Function$$LinkingGeneratedClasses"() + tmp2 + fun test1 = new LinkingGeneratedClasses__Legacy."C$LinkingGeneratedClasses"() fun test2(x) = let {tmp} if x is @@ -23,9 +20,6 @@ module LinkingGeneratedClasses with tmp = new S() f_S_sp_0(tmp, 1) else new S() - fun test3 = - let {obj_2} - obj_2 = new D() - obj_2 + fun test3 = new D() open LinkingGeneratedClasses fun f_S_sp_0(self, x) = 1 \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls index 23c2eaf498..94535b5830 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedClass.mls @@ -17,10 +17,7 @@ module StagedClass with () class C() with () - fun h() = - let {obj_5} - obj_5 = new D() - obj_5 + fun h() = new D() class X(val x) with () fun f(y) = @@ -58,14 +55,8 @@ module StagedClass with y4 = arg_Baz_0_ y4 + 1 else -1 - fun foo() = - let {obj_6} - obj_6 = new Foo() - obj_6 - fun g() = - let {obj_7} - obj_7 = new D() - obj_7 + fun foo() = new Foo() + fun g() = new D() fun helpFoo(x) = StagedClass__Legacy."Helper$StagedClass".foo(x) fun xx() = let {tmp3} diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls index bf0495b2ea..8d04965345 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/StagedRegExp.mls @@ -42,10 +42,7 @@ module StagedRegExp with class Empty() extends RegExp() with () fun canBeEmpty() = true - fun derive(c) = - let {obj_1} - obj_1 = new Nothing() - obj_1 + fun derive(c) = new Nothing() fun eq(other) = if other is Empty then true @@ -74,10 +71,7 @@ module StagedRegExp with class Any() extends RegExp() with () fun canBeEmpty() = false - fun derive(c) = - let {obj_2} - obj_2 = new Empty() - obj_2 + fun derive(c) = new Empty() fun eq(other) = if other is Any then true @@ -296,9 +290,9 @@ module StagedRegExp with fun arrEq(arr1, arr2) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".eq(arr1, arr2) fun concat(lhs, rhs) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".concat(lhs, rhs) fun digits() = - let {tmp51, tup_8} - tup_8 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - tmp51 = tup_8 + let {tmp51, tup_6} + tup_6 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + tmp51 = tup_6 new In(tmp51) fun has(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) fun len(s) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".len(s) @@ -308,20 +302,14 @@ module StagedRegExp with tmp66 = [] matchAllImpl_StagedRegExp_sp_0(p, s, tmp66) fun matchAllEmail(s) = - let {p7, email, tmp67, tmp68, tmp69, tmp70, tmp71, tmp72, tmp73, tmp74, tmp75, tup_9, tup_10, tup_11, obj_12, tup_13, obj_14, obj_15, obj_16} - tup_9 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - tmp67 = tup_9 + let {p7, email, tmp67, tmp68, tmp69, tmp70, tmp71, tmp72, tmp73, tmp74, tmp75, tup_7, tup_8} + tup_7 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + tmp67 = tup_7 tmp68 = ["-", "."] - tup_10 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] - tmp69 = tup_10 + tup_8 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] + tmp69 = tup_8 tmp70 = new In(tmp69) - tup_11 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] - obj_12 = new In(tup_11) - tup_13 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", "."] - obj_14 = new In(tup_13) - obj_15 = new Star(obj_14) - obj_16 = new Concat(obj_12, obj_15) - p7 = obj_16 + p7 = plus_StagedRegExp_sp_0(tmp70) tmp71 = new Exact("@") tmp72 = new Exact(".") tmp73 = new Concat(tmp72, p7) @@ -330,7 +318,7 @@ module StagedRegExp with email = new Concat(p7, tmp75) matchAll_StagedRegExp_sp_0(email, s) fun matchAllIPv4(s) = - let {fo, fi, segment, ipv4, tmp102, tmp103, tmp104, tmp105, tmp106, tmp107, tmp108, tmp109, tmp110, tmp111, tmp112, tmp113, tmp114, tmp115, tmp116, tmp117, tmp118, tmp119, tmp120, tmp121, tmp122, tup_59, obj_60, obj_61, obj_62, obj_63, tup_64, obj_65, tup_66, obj_67, obj_68, obj_69, tup_70, obj_71, obj_157, obj_158, tup_159, obj_160, obj_161, obj_162, obj_163, tup_164, obj_165, tup_166, obj_167, obj_168, obj_169, obj_170, obj_171, obj_172, tup_173, obj_174, obj_175, obj_176, tup_177, obj_178, obj_179, obj_180, obj_181, obj_182, obj_183, obj_184, obj_185, obj_186, tup_187, obj_188, obj_189, obj_190, obj_191, tup_192, obj_193, tup_194, obj_195, obj_196, obj_197, obj_198, obj_199, obj_200, tup_201, obj_202, obj_203, obj_204, tup_205, obj_206, obj_207, obj_208, obj_209, obj_210, obj_211, obj_212, obj_213, obj_214, tup_215, obj_216, obj_217, obj_218, obj_219, tup_220, obj_221, tup_222, obj_223, obj_224, obj_225, obj_226, obj_227, obj_228, tup_229, obj_230, obj_231, obj_232, tup_233, obj_234, obj_235, obj_236, obj_237, obj_238, obj_239, obj_240, obj_241, obj_242} + let {fo, fi, segment, ipv4, tmp102, tmp103, tmp104, tmp105, tmp106, tmp107, tmp108, tmp109, tmp110, tmp111, tmp112, tmp113, tmp114, tmp115, tmp116, tmp117, tmp118, tmp119, tmp120, tmp121, tmp122} tmp102 = ["0", "1", "2", "3", "4"] fo = new In(tmp102) tmp103 = ["0", "1", "2", "3", "4", "5"] @@ -340,120 +328,21 @@ module StagedRegExp with tmp106 = new Concat(tmp105, fi) tmp107 = new Concat(tmp104, tmp106) tmp108 = new Exact("2") - tup_59 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_60 = new In(tup_59) - tmp109 = obj_60 + tmp109 = digits() tmp110 = new Concat(fo, tmp109) tmp111 = new Concat(tmp108, tmp110) tmp112 = new Exact("1") - obj_61 = new Exact("1") - obj_62 = new Empty() - obj_63 = new Union(obj_61, obj_62) - tmp113 = obj_63 - tup_64 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_65 = new In(tup_64) - tmp114 = obj_65 - tup_66 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_67 = new In(tup_66) - obj_68 = new Empty() - obj_69 = new Union(obj_67, obj_68) - tmp115 = obj_69 - tup_70 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_71 = new In(tup_70) - tmp116 = obj_71 + tmp113 = question_StagedRegExp_sp_2(tmp112) + tmp114 = digits() + tmp115 = question_StagedRegExp_sp_3(tmp114) + tmp116 = digits() tmp117 = new Concat(tmp115, tmp116) tmp118 = new Concat(tmp113, tmp117) tmp119 = new Union(tmp111, tmp118) segment = new Union(tmp107, tmp119) tmp120 = new Exact(".") tmp121 = new Concat(segment, tmp120) - obj_157 = new Exact("2") - obj_158 = new Exact("5") - tup_159 = ["0", "1", "2", "3", "4", "5"] - obj_160 = new In(tup_159) - obj_161 = new Concat(obj_158, obj_160) - obj_162 = new Concat(obj_157, obj_161) - obj_163 = new Exact("2") - tup_164 = ["0", "1", "2", "3", "4"] - obj_165 = new In(tup_164) - tup_166 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_167 = new In(tup_166) - obj_168 = new Concat(obj_165, obj_167) - obj_169 = new Concat(obj_163, obj_168) - obj_170 = new Exact("1") - obj_171 = new Empty() - obj_172 = new Union(obj_170, obj_171) - tup_173 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_174 = new In(tup_173) - obj_175 = new Empty() - obj_176 = new Union(obj_174, obj_175) - tup_177 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_178 = new In(tup_177) - obj_179 = new Concat(obj_176, obj_178) - obj_180 = new Concat(obj_172, obj_179) - obj_181 = new Union(obj_169, obj_180) - obj_182 = new Union(obj_162, obj_181) - obj_183 = new Exact(".") - obj_184 = new Concat(obj_182, obj_183) - obj_185 = new Exact("2") - obj_186 = new Exact("5") - tup_187 = ["0", "1", "2", "3", "4", "5"] - obj_188 = new In(tup_187) - obj_189 = new Concat(obj_186, obj_188) - obj_190 = new Concat(obj_185, obj_189) - obj_191 = new Exact("2") - tup_192 = ["0", "1", "2", "3", "4"] - obj_193 = new In(tup_192) - tup_194 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_195 = new In(tup_194) - obj_196 = new Concat(obj_193, obj_195) - obj_197 = new Concat(obj_191, obj_196) - obj_198 = new Exact("1") - obj_199 = new Empty() - obj_200 = new Union(obj_198, obj_199) - tup_201 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_202 = new In(tup_201) - obj_203 = new Empty() - obj_204 = new Union(obj_202, obj_203) - tup_205 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_206 = new In(tup_205) - obj_207 = new Concat(obj_204, obj_206) - obj_208 = new Concat(obj_200, obj_207) - obj_209 = new Union(obj_197, obj_208) - obj_210 = new Union(obj_190, obj_209) - obj_211 = new Exact(".") - obj_212 = new Concat(obj_210, obj_211) - obj_213 = new Exact("2") - obj_214 = new Exact("5") - tup_215 = ["0", "1", "2", "3", "4", "5"] - obj_216 = new In(tup_215) - obj_217 = new Concat(obj_214, obj_216) - obj_218 = new Concat(obj_213, obj_217) - obj_219 = new Exact("2") - tup_220 = ["0", "1", "2", "3", "4"] - obj_221 = new In(tup_220) - tup_222 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_223 = new In(tup_222) - obj_224 = new Concat(obj_221, obj_223) - obj_225 = new Concat(obj_219, obj_224) - obj_226 = new Exact("1") - obj_227 = new Empty() - obj_228 = new Union(obj_226, obj_227) - tup_229 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_230 = new In(tup_229) - obj_231 = new Empty() - obj_232 = new Union(obj_230, obj_231) - tup_233 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_234 = new In(tup_233) - obj_235 = new Concat(obj_232, obj_234) - obj_236 = new Concat(obj_228, obj_235) - obj_237 = new Union(obj_225, obj_236) - obj_238 = new Union(obj_218, obj_237) - obj_239 = new Exact(".") - obj_240 = new Concat(obj_238, obj_239) - obj_241 = new Concat(obj_212, obj_240) - obj_242 = new Concat(obj_184, obj_241) - tmp122 = obj_242 + tmp122 = nTimes_StagedRegExp_sp_0(tmp121, 3) ipv4 = new Concat(tmp122, segment) matchAll_StagedRegExp_sp_2(ipv4, s) fun matchAllImpl(p, s, res) = @@ -483,80 +372,44 @@ module StagedRegExp with tmp65 = s.slice(1) matchAllImpl(p, tmp65, res) fun matchAllURI(s) = - let {n1, n2, n3, w, d, p8, head, body, params, uri, tmp76, tmp77, tmp78, tmp79, tmp80, tmp81, tmp82, tmp83, tmp84, tmp85, tmp86, tmp87, tmp88, tmp89, tmp90, tmp91, tmp92, tmp93, tmp94, tmp95, tmp96, tmp97, tmp98, tmp99, tmp100, tmp101, tup_19, obj_20, tup_21, obj_22, tup_23, tup_24, tup_25, tup_26, tup_27, obj_28, tup_29, obj_30, obj_31, obj_32, tup_33, obj_34, tup_35, obj_36, obj_37, obj_38, tup_39, obj_40, tup_41, obj_42, obj_43, obj_44, obj_45, tup_46, obj_47, obj_48, obj_49, obj_50, obj_51, obj_52, tup_53, obj_54, obj_55, obj_56, obj_57, obj_58} + let {n1, n2, n3, w, d, p8, head, body, params, uri, tmp76, tmp77, tmp78, tmp79, tmp80, tmp81, tmp82, tmp83, tmp84, tmp85, tmp86, tmp87, tmp88, tmp89, tmp90, tmp91, tmp92, tmp93, tmp94, tmp95, tmp96, tmp97, tmp98, tmp99, tmp100, tmp101, tup_9, tup_10, tup_11, tup_12} tmp76 = ["/", "?", "#", " ", "\n", "\t", "\r"] n1 = new Not(tmp76) tmp77 = ["?", "#", " ", "\n", "\t", "\r"] n2 = new Not(tmp77) tmp78 = ["#", " ", "\n", "\t", "\r"] n3 = new Not(tmp78) - tup_19 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - obj_20 = new In(tup_19) - w = obj_20 - tup_21 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_22 = new In(tup_21) - d = obj_22 - tup_23 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - tmp79 = tup_23 - tup_24 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - tmp80 = tup_24 + w = words() + d = digits() + tup_9 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + tmp79 = tup_9 + tup_10 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + tmp80 = tup_10 tmp81 = ["-", "_"] - tup_25 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] - tmp82 = tup_25 - tup_26 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] - p8 = tup_26 - tup_27 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - obj_28 = new In(tup_27) - tup_29 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - obj_30 = new In(tup_29) - obj_31 = new Star(obj_30) - obj_32 = new Concat(obj_28, obj_31) - tmp83 = obj_32 + tup_11 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] + tmp82 = tup_11 + tup_12 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] + p8 = tup_12 + tmp83 = plus_StagedRegExp_sp_1(w) tmp84 = new Exact(":") tmp85 = new Exact("/") tmp86 = new Exact("/") tmp87 = new Concat(tmp85, tmp86) tmp88 = new Concat(tmp84, tmp87) head = new Concat(tmp83, tmp88) - tup_33 = ["/", "?", "#", " ", "\n", "\t", "\r"] - obj_34 = new Not(tup_33) - tup_35 = ["/", "?", "#", " ", "\n", "\t", "\r"] - obj_36 = new Not(tup_35) - obj_37 = new Star(obj_36) - obj_38 = new Concat(obj_34, obj_37) - tmp89 = obj_38 - tup_39 = ["?", "#", " ", "\n", "\t", "\r"] - obj_40 = new Not(tup_39) - tup_41 = ["?", "#", " ", "\n", "\t", "\r"] - obj_42 = new Not(tup_41) - obj_43 = new Star(obj_42) - obj_44 = new Concat(obj_40, obj_43) - tmp90 = obj_44 + tmp89 = plus_StagedRegExp_sp_2(n1) + tmp90 = plus_StagedRegExp_sp_3(n2) body = new Concat(tmp89, tmp90) tmp91 = new Exact("?") tmp92 = new In(p8) tmp93 = new Star(tmp92) tmp94 = new Concat(tmp91, tmp93) - obj_45 = new Exact("?") - tup_46 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] - obj_47 = new In(tup_46) - obj_48 = new Star(obj_47) - obj_49 = new Concat(obj_45, obj_48) - obj_50 = new Empty() - obj_51 = new Union(obj_49, obj_50) - tmp95 = obj_51 + tmp95 = question_StagedRegExp_sp_0(tmp94) tmp96 = new Exact("#") tmp97 = new In(p8) tmp98 = new Star(tmp97) tmp99 = new Concat(tmp96, tmp98) - obj_52 = new Exact("#") - tup_53 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "_"] - obj_54 = new In(tup_53) - obj_55 = new Star(obj_54) - obj_56 = new Concat(obj_52, obj_55) - obj_57 = new Empty() - obj_58 = new Union(obj_56, obj_57) - tmp100 = obj_58 + tmp100 = question_StagedRegExp_sp_1(tmp99) params = new Concat(tmp95, tmp100) tmp101 = new Concat(body, params) uri = new Concat(head, tmp101) @@ -619,19 +472,19 @@ module StagedRegExp with tmp53 = nTimes(r, tmp52) new Concat(r, tmp53) fun notDigit() = - let {tmp39, tup_5} - tup_5 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - tmp39 = tup_5 + let {tmp39, tup_3} + tup_3 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + tmp39 = tup_3 new Not(tmp39) fun notSpace() = - let {tmp38, tup_4} - tup_4 = [" ", "\n", "\t", "\r"] - tmp38 = tup_4 + let {tmp38, tup_2} + tup_2 = [" ", "\n", "\t", "\r"] + tmp38 = tup_2 new Not(tmp38) fun notWord() = - let {tmp37, tup_3} - tup_3 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - tmp37 = tup_3 + let {tmp37, tup_1} + tup_1 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + tmp37 = tup_1 new Not(tmp37) fun plus(r) = let {tmp54} @@ -644,14 +497,14 @@ module StagedRegExp with new Union(r, tmp48) fun setEq(s1, s2) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".setEq(s1, s2) fun spaces() = - let {tmp50, tup_7} - tup_7 = [" ", "\n", "\t", "\r"] - tmp50 = tup_7 + let {tmp50, tup_5} + tup_5 = [" ", "\n", "\t", "\r"] + tmp50 = tup_5 new In(tmp50) fun words() = - let {tmp49, tup_6} - tup_6 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] - tmp49 = tup_6 + let {tmp49, tup_4} + tup_4 = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] + tmp49 = tup_4 new In(tmp49) open StagedRegExp fun has_StagedRegExp_sp_0(arr, ele) = StagedRegExp__Legacy."SeqHelper$StagedRegExp".has(arr, ele) @@ -1104,101 +957,16 @@ fun match_StagedRegExp_sp_0(p, s) = matchImpl_StagedRegExp_sp_1(p, s, "") fun match_StagedRegExp_sp_1(p, s) = matchImpl_StagedRegExp_sp_3(p, s, "") fun match_StagedRegExp_sp_2(p, s) = matchImpl_StagedRegExp_sp_6(p, s, "") fun nTimes_StagedRegExp_sp_0(r, i) = - let {scrut17, tmp52, tmp53, obj_100, obj_101, tup_102, obj_103, obj_104, obj_105, obj_106, tup_107, obj_108, tup_109, obj_110, obj_111, obj_112, obj_113, obj_114, obj_115, tup_116, obj_117, obj_118, obj_119, tup_120, obj_121, obj_122, obj_123, obj_124, obj_125, obj_126, obj_127, obj_128, obj_129, tup_130, obj_131, obj_132, obj_133, obj_134, tup_135, obj_136, tup_137, obj_138, obj_139, obj_140, obj_141, obj_142, obj_143, tup_144, obj_145, obj_146, obj_147, tup_148, obj_149, obj_150, obj_151, obj_152, obj_153, obj_154, obj_155, obj_156} + let {scrut17, tmp52, tmp53} scrut17 = false tmp52 = 2 - obj_100 = new Exact("2") - obj_101 = new Exact("5") - tup_102 = ["0", "1", "2", "3", "4", "5"] - obj_103 = new In(tup_102) - obj_104 = new Concat(obj_101, obj_103) - obj_105 = new Concat(obj_100, obj_104) - obj_106 = new Exact("2") - tup_107 = ["0", "1", "2", "3", "4"] - obj_108 = new In(tup_107) - tup_109 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_110 = new In(tup_109) - obj_111 = new Concat(obj_108, obj_110) - obj_112 = new Concat(obj_106, obj_111) - obj_113 = new Exact("1") - obj_114 = new Empty() - obj_115 = new Union(obj_113, obj_114) - tup_116 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_117 = new In(tup_116) - obj_118 = new Empty() - obj_119 = new Union(obj_117, obj_118) - tup_120 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_121 = new In(tup_120) - obj_122 = new Concat(obj_119, obj_121) - obj_123 = new Concat(obj_115, obj_122) - obj_124 = new Union(obj_112, obj_123) - obj_125 = new Union(obj_105, obj_124) - obj_126 = new Exact(".") - obj_127 = new Concat(obj_125, obj_126) - obj_128 = new Exact("2") - obj_129 = new Exact("5") - tup_130 = ["0", "1", "2", "3", "4", "5"] - obj_131 = new In(tup_130) - obj_132 = new Concat(obj_129, obj_131) - obj_133 = new Concat(obj_128, obj_132) - obj_134 = new Exact("2") - tup_135 = ["0", "1", "2", "3", "4"] - obj_136 = new In(tup_135) - tup_137 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_138 = new In(tup_137) - obj_139 = new Concat(obj_136, obj_138) - obj_140 = new Concat(obj_134, obj_139) - obj_141 = new Exact("1") - obj_142 = new Empty() - obj_143 = new Union(obj_141, obj_142) - tup_144 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_145 = new In(tup_144) - obj_146 = new Empty() - obj_147 = new Union(obj_145, obj_146) - tup_148 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_149 = new In(tup_148) - obj_150 = new Concat(obj_147, obj_149) - obj_151 = new Concat(obj_143, obj_150) - obj_152 = new Union(obj_140, obj_151) - obj_153 = new Union(obj_133, obj_152) - obj_154 = new Exact(".") - obj_155 = new Concat(obj_153, obj_154) - obj_156 = new Concat(obj_127, obj_155) - tmp53 = obj_156 + tmp53 = nTimes_StagedRegExp_sp_1(r, tmp52) new Concat(r, tmp53) fun nTimes_StagedRegExp_sp_1(r, i) = - let {scrut17, tmp52, tmp53, obj_72, obj_73, tup_74, obj_75, obj_76, obj_77, obj_78, tup_79, obj_80, tup_81, obj_82, obj_83, obj_84, obj_85, obj_86, obj_87, tup_88, obj_89, obj_90, obj_91, tup_92, obj_93, obj_94, obj_95, obj_96, obj_97, obj_98, obj_99} + let {scrut17, tmp52, tmp53} scrut17 = false tmp52 = 1 - obj_72 = new Exact("2") - obj_73 = new Exact("5") - tup_74 = ["0", "1", "2", "3", "4", "5"] - obj_75 = new In(tup_74) - obj_76 = new Concat(obj_73, obj_75) - obj_77 = new Concat(obj_72, obj_76) - obj_78 = new Exact("2") - tup_79 = ["0", "1", "2", "3", "4"] - obj_80 = new In(tup_79) - tup_81 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_82 = new In(tup_81) - obj_83 = new Concat(obj_80, obj_82) - obj_84 = new Concat(obj_78, obj_83) - obj_85 = new Exact("1") - obj_86 = new Empty() - obj_87 = new Union(obj_85, obj_86) - tup_88 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_89 = new In(tup_88) - obj_90 = new Empty() - obj_91 = new Union(obj_89, obj_90) - tup_92 = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - obj_93 = new In(tup_92) - obj_94 = new Concat(obj_91, obj_93) - obj_95 = new Concat(obj_87, obj_94) - obj_96 = new Union(obj_84, obj_95) - obj_97 = new Union(obj_77, obj_96) - obj_98 = new Exact(".") - obj_99 = new Concat(obj_97, obj_98) - tmp53 = obj_99 + tmp53 = nTimes_StagedRegExp_sp_2(r, tmp52) new Concat(r, tmp53) fun nTimes_StagedRegExp_sp_2(r, i) = let {scrut17, tmp52, tmp53} @@ -1237,31 +1005,20 @@ fun question_StagedRegExp_sp_3(r) = tmp48 = new Empty() new Union(r, tmp48) fun canBeEmpty_Nothing_sp_0(self) = false -fun derive_Nothing_sp_0(self, c) = - let {obj_244} - obj_244 = new Nothing() - obj_244 -fun normalize_Nothing_sp_0(self) = - let {obj_18} - obj_18 = new Nothing() - obj_18 +fun derive_Nothing_sp_0(self, c) = self +fun normalize_Nothing_sp_0(self) = self fun normalize_Nothing_sp_1(self) = self fun startsWith_Nothing_sp_0(self, c) = false fun canBeEmpty_Empty_sp_0(self) = true -fun derive_Empty_sp_0(self, c) = - let {obj_243} - obj_243 = new Nothing() - obj_243 -fun normalize_Empty_sp_0(self) = - let {obj_17} - obj_17 = new Empty() - obj_17 +fun derive_Empty_sp_0(self, c) = new Nothing() +fun normalize_Empty_sp_0(self) = self fun startsWith_Empty_sp_0(self, c) = false fun canBeEmpty_Exact_sp_0(self) = false fun canBeEmpty_Exact_sp_1(self) = false fun canBeEmpty_Exact_sp_2(self) = false fun canBeEmpty_Exact_sp_3(self) = false fun canBeEmpty_Exact_sp_4(self) = false +fun canBeEmpty_Exact_sp_5(self) = false fun derive_Exact_sp_0(self, c) = let {scrut2} scrut2 = self.startsWith(c) @@ -1292,8 +1049,15 @@ fun derive_Exact_sp_4(self, c) = if scrut2 is true then new Empty() else new Nothing() +fun derive_Exact_sp_5(self, c) = + let {scrut2} + scrut2 = self.startsWith(c) + if scrut2 is + true then new Empty() + else new Nothing() fun normalize_Exact_sp_0(self) = self fun normalize_Exact_sp_1(self) = self +fun normalize_Exact_sp_10(self) = self fun normalize_Exact_sp_2(self) = self fun normalize_Exact_sp_3(self) = self fun normalize_Exact_sp_4(self) = self @@ -1301,11 +1065,13 @@ fun normalize_Exact_sp_5(self) = self fun normalize_Exact_sp_6(self) = self fun normalize_Exact_sp_7(self) = self fun normalize_Exact_sp_8(self) = self +fun normalize_Exact_sp_9(self) = self fun startsWith_Exact_sp_0(self, c) = ==("@", c) fun startsWith_Exact_sp_1(self, c) = ==(":", c) fun startsWith_Exact_sp_2(self, c) = ==("2", c) -fun startsWith_Exact_sp_3(self, c) = ==("1", c) -fun startsWith_Exact_sp_4(self, c) = ==(".", c) +fun startsWith_Exact_sp_3(self, c) = ==("2", c) +fun startsWith_Exact_sp_4(self, c) = ==("1", c) +fun startsWith_Exact_sp_5(self, c) = ==(".", c) fun canBeEmpty_Not_sp_0(self) = false fun derive_Not_sp_0(self, c) = let {scrut3} @@ -1337,7 +1103,7 @@ fun derive_Union_sp_1(self, c) = normalize_Union_sp_11(tmp8) fun derive_Union_sp_2(self, c) = let {tmp6, tmp7, tmp8} - tmp6 = derive_Exact_sp_3(self.p1, c) + tmp6 = derive_Exact_sp_4(self.p1, c) tmp7 = derive_Empty_sp_0(self.p2, c) tmp8 = new Union.class(tmp6, tmp7) normalize_Union_sp_7(tmp8) @@ -1412,15 +1178,15 @@ fun normalize_Union_sp_1(self) = mkUnion(s2.arr, tmp21, tmp22) fun normalize_Union_sp_10(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = normalize_In_sp_5(self.p1) + p1__1 = normalize_In_sp_6(self.p1) p2__1 = normalize_Empty_sp_0(self.p2) tmp16 = [p1__1] arr11 = tmp16 tmp17 = [p2__1] arr2 = tmp17 tmp18 = new DedupSet(arr11) - tmp19 = 1 - tmp20 = 1 + tmp19 = len_StagedRegExp_sp_1(arr2) + tmp20 = len_StagedRegExp_sp_1(arr2) s2 = self.iter(tmp18, arr2, 1, 1) tmp21 = len(s2.arr) tmp22 = len(s2.arr) @@ -1429,7 +1195,7 @@ fun normalize_Union_sp_11(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} if self.p1 is Concat then - p1__1 = normalize_Concat_sp_33(self.p1) + p1__1 = normalize_Concat_sp_50(self.p1) Nothing then p1__1 = normalize_Nothing_sp_0(self.p1) p2__1 = self.p2.normalize() @@ -1452,7 +1218,7 @@ fun normalize_Union_sp_12(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} if self.p1 is Concat then - p1__1 = normalize_Concat_sp_31(self.p1) + p1__1 = normalize_Concat_sp_51(self.p1) Nothing then p1__1 = normalize_Nothing_sp_0(self.p1) p2__1 = self.p2.normalize() @@ -1473,7 +1239,7 @@ fun normalize_Union_sp_12(self) = mkUnion(s2.arr, tmp21, tmp22) fun normalize_Union_sp_13(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = normalize_Concat_sp_41(self.p1) + p1__1 = normalize_Concat_sp_56(self.p1) p2__1 = normalize_Union_sp_14(self.p2) tmp16 = [p1__1] arr11 = tmp16 @@ -1492,8 +1258,8 @@ fun normalize_Union_sp_13(self) = mkUnion(s2.arr, tmp21, tmp22) fun normalize_Union_sp_14(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = normalize_Concat_sp_42(self.p1) - p2__1 = normalize_Concat_sp_43(self.p2) + p1__1 = normalize_Concat_sp_57(self.p1) + p2__1 = normalize_Concat_sp_58(self.p2) tmp16 = [p1__1] arr11 = tmp16 tmp17 = [p2__1] @@ -1507,22 +1273,22 @@ fun normalize_Union_sp_14(self) = mkUnion(s2.arr, tmp21, tmp22) fun normalize_Union_sp_15(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = normalize_Exact_sp_8(self.p1) + p1__1 = normalize_Exact_sp_10(self.p1) p2__1 = normalize_Empty_sp_0(self.p2) tmp16 = [p1__1] arr11 = tmp16 tmp17 = [p2__1] arr2 = tmp17 tmp18 = new DedupSet(arr11) - tmp19 = 1 - tmp20 = 1 + tmp19 = len_StagedRegExp_sp_1(arr2) + tmp20 = len_StagedRegExp_sp_1(arr2) s2 = self.iter(tmp18, arr2, 1, 1) tmp21 = len(s2.arr) tmp22 = len(s2.arr) mkUnion(s2.arr, tmp21, tmp22) fun normalize_Union_sp_16(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = normalize_Concat_sp_37(self.p1) + p1__1 = normalize_Concat_sp_52(self.p1) if self.p2 is Empty then p2__1 = normalize_Empty_sp_0(self.p2) @@ -1541,18 +1307,18 @@ fun normalize_Union_sp_16(self) = mkUnion(s2.arr, tmp21, tmp22) fun normalize_Union_sp_17(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = normalize_Concat_sp_47(self.p1) + p1__1 = normalize_Concat_sp_62(self.p1) if self.p2 is Nothing then p2__1 = normalize_Nothing_sp_0(self.p2) Exact then - p2__1 = normalize_Exact_sp_1(self.p2) + p2__1 = normalize_Exact_sp_7(self.p2) Nothing then p2__1 = normalize_Nothing_sp_1(self.p2) Concat then - p2__1 = normalize_Concat_sp_37(self.p2) + p2__1 = normalize_Concat_sp_52(self.p2) Concat then - p2__1 = normalize_Concat_sp_50(self.p2) + p2__1 = normalize_Concat_sp_65(self.p2) tmp16 = [p1__1] arr11 = tmp16 tmp17 = [p2__1] @@ -1566,10 +1332,10 @@ fun normalize_Union_sp_17(self) = mkUnion(s2.arr, tmp21, tmp22) fun normalize_Union_sp_2(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = normalize_Concat_sp_3(self.p1) + p1__1 = normalize_Concat_sp_13(self.p1) if self.p2 is Concat then - p2__1 = normalize_Concat_sp_5(self.p2) + p2__1 = normalize_Concat_sp_10(self.p2) Nothing then p2__1 = normalize_Nothing_sp_0(self.p2) tmp16 = [p1__1] @@ -1585,40 +1351,40 @@ fun normalize_Union_sp_2(self) = mkUnion(s2.arr, tmp21, tmp22) fun normalize_Union_sp_3(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = normalize_Concat_sp_20(self.p1) + p1__1 = normalize_Concat_sp_28(self.p1) p2__1 = normalize_Empty_sp_0(self.p2) tmp16 = [p1__1] arr11 = tmp16 tmp17 = [p2__1] arr2 = tmp17 tmp18 = new DedupSet(arr11) - tmp19 = 1 - tmp20 = 1 + tmp19 = len_StagedRegExp_sp_1(arr2) + tmp20 = len_StagedRegExp_sp_1(arr2) s2 = self.iter(tmp18, arr2, 1, 1) tmp21 = len(s2.arr) tmp22 = len(s2.arr) mkUnion(s2.arr, tmp21, tmp22) fun normalize_Union_sp_4(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = normalize_Concat_sp_21(self.p1) + p1__1 = normalize_Concat_sp_29(self.p1) p2__1 = normalize_Empty_sp_0(self.p2) tmp16 = [p1__1] arr11 = tmp16 tmp17 = [p2__1] arr2 = tmp17 tmp18 = new DedupSet(arr11) - tmp19 = 1 - tmp20 = 1 + tmp19 = len_StagedRegExp_sp_1(arr2) + tmp20 = len_StagedRegExp_sp_1(arr2) s2 = self.iter(tmp18, arr2, 1, 1) tmp21 = len(s2.arr) tmp22 = len(s2.arr) mkUnion(s2.arr, tmp21, tmp22) fun normalize_Union_sp_5(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = normalize_Concat_sp_10(self.p1) + p1__1 = normalize_Concat_sp_32(self.p1) if self.p2 is Concat then - p2__1 = normalize_Concat_sp_12(self.p2) + p2__1 = normalize_Concat_sp_22(self.p2) Nothing then p2__1 = normalize_Nothing_sp_0(self.p2) tmp16 = [p1__1] @@ -1634,12 +1400,12 @@ fun normalize_Union_sp_5(self) = mkUnion(s2.arr, tmp21, tmp22) fun normalize_Union_sp_6(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = normalize_Concat_sp_23(self.p1) + p1__1 = normalize_Concat_sp_33(self.p1) if self.p2 is Nothing then p2__1 = normalize_Nothing_sp_0(self.p2) Concat then - p2__1 = normalize_Concat_sp_29(self.p2) + p2__1 = normalize_Concat_sp_42(self.p2) tmp16 = [p1__1] arr11 = tmp16 tmp17 = [p2__1] @@ -1664,15 +1430,15 @@ fun normalize_Union_sp_7(self) = tmp17 = [p2__1] arr2 = tmp17 tmp18 = new DedupSet(arr11) - tmp19 = 1 - tmp20 = 1 + tmp19 = len_StagedRegExp_sp_4(arr2) + tmp20 = len_StagedRegExp_sp_4(arr2) s2 = self.iter(tmp18, arr2, 1, 1) tmp21 = len(s2.arr) tmp22 = len(s2.arr) mkUnion(s2.arr, tmp21, tmp22) fun normalize_Union_sp_8(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = normalize_Concat_sp_34(self.p1) + p1__1 = normalize_Concat_sp_47(self.p1) if self.p2 is Empty then p2__1 = normalize_Empty_sp_0(self.p2) @@ -1691,7 +1457,7 @@ fun normalize_Union_sp_8(self) = mkUnion(s2.arr, tmp21, tmp22) fun normalize_Union_sp_9(self) = let {p1__1, p2__1, arr11, arr2, s2, tmp16, tmp17, tmp18, tmp19, tmp20, tmp21, tmp22} - p1__1 = normalize_Concat_sp_35(self.p1) + p1__1 = normalize_Concat_sp_48(self.p1) p2__1 = self.p2.normalize() tmp16 = [p1__1] arr11 = tmp16 @@ -1722,7 +1488,7 @@ fun startsWith_Union_sp_1(self, c) = else true fun startsWith_Union_sp_2(self, c) = let {tmp26} - tmp26 = startsWith_Exact_sp_3(self.p1, c) + tmp26 = startsWith_Exact_sp_4(self.p1, c) if tmp26 is false then startsWith_Empty_sp_0(self.p2, c) else true @@ -1759,6 +1525,7 @@ fun normalize_In_sp_2(self) = self fun normalize_In_sp_3(self) = self fun normalize_In_sp_4(self) = self fun normalize_In_sp_5(self) = self +fun normalize_In_sp_6(self) = self fun startsWith_In_sp_0(self, c) = has_StagedRegExp_sp_0(self.chars, c) fun startsWith_In_sp_1(self, c) = has_StagedRegExp_sp_1(self.chars, c) fun startsWith_In_sp_2(self, c) = has_StagedRegExp_sp_3(self.chars, c) @@ -1806,19 +1573,19 @@ fun derive_Concat_sp_10(self, c) = p1__2 = derive_Concat_sp_11(self.p1, c) scrut8 = canBeEmpty_Concat_sp_11(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_27(tmp30) + normalize_Concat_sp_40(tmp30) fun derive_Concat_sp_11(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = derive_Concat_sp_12(self.p1, c) scrut8 = canBeEmpty_Concat_sp_12(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_26(tmp30) + normalize_Concat_sp_39(tmp30) fun derive_Concat_sp_12(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = derive_Not_sp_0(self.p1, c) scrut8 = canBeEmpty_Not_sp_0(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_25(tmp30) + normalize_Concat_sp_38(tmp30) fun derive_Concat_sp_13(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = self.p1.derive(c) @@ -1831,37 +1598,37 @@ fun derive_Concat_sp_13(self, c) = normalize_Union_sp_6(tmp29) else tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_23(tmp30) + normalize_Concat_sp_33(tmp30) fun derive_Concat_sp_14(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = derive_Concat_sp_15(self.p1, c) scrut8 = canBeEmpty_Concat_sp_15(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_44(tmp30) + normalize_Concat_sp_59(tmp30) fun derive_Concat_sp_15(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = derive_Concat_sp_16(self.p1, c) scrut8 = canBeEmpty_Concat_sp_16(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_38(tmp30) + normalize_Concat_sp_53(tmp30) fun derive_Concat_sp_16(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = derive_Union_sp_0(self.p1, c) scrut8 = canBeEmpty_Union_sp_0(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_37(tmp30) + normalize_Concat_sp_52(tmp30) fun derive_Concat_sp_17(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = derive_Exact_sp_2(self.p1, c) scrut8 = canBeEmpty_Exact_sp_2(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_30(tmp30) + normalize_Concat_sp_43(tmp30) fun derive_Concat_sp_18(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} - p1__2 = derive_Exact_sp_2(self.p1, c) - scrut8 = canBeEmpty_Exact_sp_2(self.p1) + p1__2 = derive_Exact_sp_3(self.p1, c) + scrut8 = canBeEmpty_Exact_sp_3(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_32(tmp30) + normalize_Concat_sp_45(tmp30) fun derive_Concat_sp_19(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = derive_Union_sp_2(self.p1, c) @@ -1891,21 +1658,21 @@ fun derive_Concat_sp_21(self, c) = p1__2 = derive_Concat_sp_22(self.p1, c) scrut8 = canBeEmpty_Concat_sp_22(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_49(tmp30) + normalize_Concat_sp_64(tmp30) fun derive_Concat_sp_22(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} if self.p1 is Exact then - p1__2 = derive_Exact_sp_4(self.p1, c) + p1__2 = derive_Exact_sp_5(self.p1, c) Concat then p1__2 = derive_Concat_sp_23(self.p1, c) if self.p1 is Exact then - scrut8 = canBeEmpty_Exact_sp_4(self.p1) + scrut8 = canBeEmpty_Exact_sp_5(self.p1) Concat then scrut8 = canBeEmpty_Concat_sp_23(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_47(tmp30) + normalize_Concat_sp_62(tmp30) fun derive_Concat_sp_23(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = self.p1.derive(c) @@ -1913,12 +1680,12 @@ fun derive_Concat_sp_23(self, c) = if scrut8 is true then tmp27 = new Concat.class(p1__2, self.p2) - tmp28 = derive_Exact_sp_4(self.p2, c) + tmp28 = derive_Exact_sp_5(self.p2, c) tmp29 = new Union(tmp27, tmp28) normalize_Union_sp_16(tmp29) else tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_37(tmp30) + normalize_Concat_sp_52(tmp30) fun derive_Concat_sp_24(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} if self.p1 is @@ -1937,16 +1704,16 @@ fun derive_Concat_sp_25(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} if self.p1 is Exact then - p1__2 = derive_Exact_sp_4(self.p1, c) + p1__2 = derive_Exact_sp_5(self.p1, c) Concat then p1__2 = derive_Concat_sp_23(self.p1, c) if self.p1 is Exact then - scrut8 = canBeEmpty_Exact_sp_4(self.p1) + scrut8 = canBeEmpty_Exact_sp_5(self.p1) Concat then scrut8 = canBeEmpty_Concat_sp_23(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_50(tmp30) + normalize_Concat_sp_65(tmp30) fun derive_Concat_sp_26(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = self.p1.derive(c) @@ -1965,37 +1732,37 @@ fun derive_Concat_sp_26(self, c) = normalize_Union_sp_17(tmp29) else tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_47(tmp30) + normalize_Concat_sp_62(tmp30) fun derive_Concat_sp_3(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = derive_Exact_sp_0(self.p1, c) scrut8 = canBeEmpty_Exact_sp_0(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_8(tmp30) + normalize_Concat_sp_9(tmp30) fun derive_Concat_sp_4(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = derive_Concat_sp_5(self.p1, c) scrut8 = canBeEmpty_Concat_sp_5(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_13(tmp30) + normalize_Concat_sp_19(tmp30) fun derive_Concat_sp_5(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = derive_Concat_sp_6(self.p1, c) scrut8 = canBeEmpty_Concat_sp_6(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_10(tmp30) + normalize_Concat_sp_16(tmp30) fun derive_Concat_sp_6(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = derive_In_sp_1(self.p1, c) scrut8 = canBeEmpty_In_sp_1(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_9(tmp30) + normalize_Concat_sp_15(tmp30) fun derive_Concat_sp_7(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = derive_Concat_sp_8(self.p1, c) scrut8 = canBeEmpty_Concat_sp_8(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_23(tmp30) + normalize_Concat_sp_33(tmp30) fun derive_Concat_sp_8(self, c) = let {p1__2, scrut8, tmp27, tmp28, tmp29, tmp30} p1__2 = derive_Star_sp_1(self.p1, c) @@ -2009,7 +1776,7 @@ fun derive_Concat_sp_9(self, c) = p1__2 = derive_Exact_sp_1(self.p1, c) scrut8 = canBeEmpty_Exact_sp_1(self.p1) tmp30 = new Concat.class(p1__2, self.p2) - normalize_Concat_sp_22(tmp30) + normalize_Concat_sp_31(tmp30) fun normalize_Concat_sp_0(self) = let {p1__3, tmp31} p1__3 = self.p1.normalize() @@ -2029,6 +1796,48 @@ fun normalize_Concat_sp_1(self) = tmp31 = normalize_Star_sp_0(self.p2) new Concat.class(p1__3, tmp31) fun normalize_Concat_sp_10(self) = + let {p1__3, tmp31} + p1__3 = normalize_Concat_sp_11(self.p1) + tmp31 = normalize_Concat_sp_12(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_11(self) = + let {p1__3, tmp31} + p1__3 = normalize_In_sp_0(self.p1) + tmp31 = normalize_Star_sp_1(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_12(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_1(self.p1) + tmp31 = normalize_Concat_sp_11(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_13(self) = + let {p1__3, tmp31} + if self.p1 is + Star then + p1__3 = normalize_Star_sp_1(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Nothing then p1__3 + else + tmp31 = normalize_Concat_sp_14(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_14(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_0(self.p1) + tmp31 = normalize_Concat_sp_10(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_15(self) = + let {p1__3, tmp31} + if self.p1 is + Empty then + p1__3 = normalize_Empty_sp_0(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Empty then normalize_Star_sp_2(self.p2) + Nothing then p1__3 +fun normalize_Concat_sp_16(self) = let {p1__3, tmp31} if self.p1 is Star then @@ -2038,56 +1847,76 @@ fun normalize_Concat_sp_10(self) = if p1__3 is Nothing then p1__3 else - tmp31 = normalize_Concat_sp_11(self.p2) + tmp31 = normalize_Concat_sp_17(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_11(self) = +fun normalize_Concat_sp_17(self) = let {p1__3, tmp31} p1__3 = normalize_Exact_sp_2(self.p1) - tmp31 = normalize_Concat_sp_12(self.p2) + tmp31 = normalize_Concat_sp_18(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_12(self) = +fun normalize_Concat_sp_18(self) = let {p1__3, tmp31} p1__3 = normalize_Exact_sp_3(self.p1) tmp31 = normalize_Exact_sp_3(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_13(self) = +fun normalize_Concat_sp_19(self) = let {p1__3, tmp31} if self.p1 is Nothing then p1__3 = normalize_Nothing_sp_0(self.p1) Concat then - p1__3 = normalize_Concat_sp_14(self.p1) + p1__3 = normalize_Concat_sp_20(self.p1) if p1__3 is Nothing then p1__3 else - tmp31 = normalize_Concat_sp_15(self.p2) + tmp31 = normalize_Concat_sp_23(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_14(self) = +fun normalize_Concat_sp_2(self) = + let {p1__3, tmp31} + if self.p1 is + Empty then + p1__3 = normalize_Empty_sp_0(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Empty then normalize_Star_sp_1(self.p2) + Nothing then p1__3 +fun normalize_Concat_sp_20(self) = let {p1__3, tmp31} p1__3 = normalize_Star_sp_2(self.p1) - tmp31 = normalize_Concat_sp_11(self.p2) + tmp31 = normalize_Concat_sp_21(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_15(self) = +fun normalize_Concat_sp_21(self) = let {p1__3, tmp31} - p1__3 = normalize_Concat_sp_16(self.p1) - tmp31 = normalize_Concat_sp_19(self.p2) + p1__3 = normalize_Exact_sp_2(self.p1) + tmp31 = normalize_Concat_sp_22(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_16(self) = +fun normalize_Concat_sp_22(self) = let {p1__3, tmp31} - p1__3 = normalize_Concat_sp_17(self.p1) - tmp31 = normalize_Concat_sp_18(self.p2) + p1__3 = normalize_Exact_sp_3(self.p1) + tmp31 = normalize_Exact_sp_3(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_17(self) = +fun normalize_Concat_sp_23(self) = + let {p1__3, tmp31} + p1__3 = normalize_Concat_sp_24(self.p1) + tmp31 = normalize_Concat_sp_27(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_24(self) = + let {p1__3, tmp31} + p1__3 = normalize_Concat_sp_25(self.p1) + tmp31 = normalize_Concat_sp_26(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_25(self) = let {p1__3, tmp31} p1__3 = normalize_Not_sp_0(self.p1) tmp31 = normalize_Star_sp_3(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_18(self) = +fun normalize_Concat_sp_26(self) = let {p1__3, tmp31} p1__3 = normalize_Not_sp_1(self.p1) tmp31 = normalize_Star_sp_4(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_19(self) = +fun normalize_Concat_sp_27(self) = let {p1__3, tmp31} p1__3 = normalize_Union_sp_3(self.p1) if p1__3 is @@ -2096,7 +1925,29 @@ fun normalize_Concat_sp_19(self) = else tmp31 = normalize_Union_sp_4(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_2(self) = +fun normalize_Concat_sp_28(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_4(self.p1) + tmp31 = normalize_Star_sp_5(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_29(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_5(self.p1) + tmp31 = normalize_Star_sp_6(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_3(self) = + let {p1__3, tmp31} + if self.p1 is + Star then + p1__3 = normalize_Star_sp_1(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Nothing then p1__3 + else + tmp31 = normalize_Concat_sp_4(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_30(self) = let {p1__3, tmp31} if self.p1 is Empty then @@ -2104,19 +1955,9 @@ fun normalize_Concat_sp_2(self) = Nothing then p1__3 = normalize_Nothing_sp_0(self.p1) if p1__3 is - Empty then normalize_Star_sp_1(self.p2) + Empty then normalize_Star_sp_2(self.p2) Nothing then p1__3 -fun normalize_Concat_sp_20(self) = - let {p1__3, tmp31} - p1__3 = normalize_Exact_sp_4(self.p1) - tmp31 = normalize_Star_sp_5(self.p2) - new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_21(self) = - let {p1__3, tmp31} - p1__3 = normalize_Exact_sp_5(self.p1) - tmp31 = normalize_Star_sp_5(self.p2) - new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_22(self) = +fun normalize_Concat_sp_31(self) = let {p1__3, tmp31} if self.p1 is Empty then @@ -2124,23 +1965,50 @@ fun normalize_Concat_sp_22(self) = Nothing then p1__3 = normalize_Nothing_sp_0(self.p1) if p1__3 is - Empty then normalize_Concat_sp_12(self.p2) + Empty then normalize_Concat_sp_22(self.p2) Nothing then p1__3 -fun normalize_Concat_sp_23(self) = +fun normalize_Concat_sp_32(self) = + let {p1__3, tmp31} + if self.p1 is + Star then + p1__3 = normalize_Star_sp_2(self.p1) + Nothing then + p1__3 = normalize_Nothing_sp_0(self.p1) + if p1__3 is + Nothing then p1__3 + else + tmp31 = normalize_Concat_sp_21(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_33(self) = let {p1__3, tmp31} p1__3 = self.p1.normalize() if p1__3 is - Empty then normalize_Concat_sp_24(self.p2) + Empty then normalize_Concat_sp_34(self.p2) Nothing then p1__3 else - tmp31 = normalize_Concat_sp_24(self.p2) + tmp31 = normalize_Concat_sp_34(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_24(self) = +fun normalize_Concat_sp_34(self) = let {p1__3, tmp31} - p1__3 = normalize_Concat_sp_16(self.p1) + p1__3 = normalize_Concat_sp_35(self.p1) tmp31 = self.p2.normalize() new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_25(self) = +fun normalize_Concat_sp_35(self) = + let {p1__3, tmp31} + p1__3 = normalize_Concat_sp_36(self.p1) + tmp31 = normalize_Concat_sp_37(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_36(self) = + let {p1__3, tmp31} + p1__3 = normalize_Not_sp_0(self.p1) + tmp31 = normalize_Star_sp_3(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_37(self) = + let {p1__3, tmp31} + p1__3 = normalize_Not_sp_1(self.p1) + tmp31 = normalize_Star_sp_4(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_38(self) = let {p1__3, tmp31} if self.p1 is Empty then @@ -2150,7 +2018,7 @@ fun normalize_Concat_sp_25(self) = if p1__3 is Empty then normalize_Star_sp_3(self.p2) Nothing then p1__3 -fun normalize_Concat_sp_26(self) = +fun normalize_Concat_sp_39(self) = let {p1__3, tmp31} if self.p1 is Star then @@ -2160,43 +2028,36 @@ fun normalize_Concat_sp_26(self) = if p1__3 is Nothing then p1__3 else - tmp31 = normalize_Concat_sp_18(self.p2) + tmp31 = normalize_Concat_sp_37(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_27(self) = +fun normalize_Concat_sp_4(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_0(self.p1) + tmp31 = normalize_Concat_sp_5(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_40(self) = let {p1__3, tmp31} if self.p1 is Nothing then p1__3 = normalize_Nothing_sp_0(self.p1) Concat then - p1__3 = normalize_Concat_sp_28(self.p1) + p1__3 = normalize_Concat_sp_41(self.p1) if p1__3 is Nothing then p1__3 else tmp31 = self.p2.normalize() new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_28(self) = +fun normalize_Concat_sp_41(self) = let {p1__3, tmp31} p1__3 = normalize_Star_sp_3(self.p1) - tmp31 = normalize_Concat_sp_18(self.p2) + tmp31 = normalize_Concat_sp_37(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_29(self) = +fun normalize_Concat_sp_42(self) = let {p1__3, tmp31} - p1__3 = normalize_Concat_sp_28(self.p1) + p1__3 = normalize_Concat_sp_41(self.p1) tmp31 = self.p2.normalize() new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_3(self) = - let {p1__3, tmp31} - if self.p1 is - Star then - p1__3 = normalize_Star_sp_1(self.p1) - Nothing then - p1__3 = normalize_Nothing_sp_0(self.p1) - if p1__3 is - Nothing then p1__3 - else - tmp31 = normalize_Concat_sp_4(self.p2) - new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_30(self) = +fun normalize_Concat_sp_43(self) = let {p1__3, tmp31} if self.p1 is Empty then @@ -2204,14 +2065,14 @@ fun normalize_Concat_sp_30(self) = Nothing then p1__3 = normalize_Nothing_sp_0(self.p1) if p1__3 is - Empty then normalize_Concat_sp_31(self.p2) + Empty then normalize_Concat_sp_44(self.p2) Nothing then p1__3 -fun normalize_Concat_sp_31(self) = +fun normalize_Concat_sp_44(self) = let {p1__3, tmp31} p1__3 = normalize_Exact_sp_6(self.p1) - tmp31 = normalize_In_sp_3(self.p2) + tmp31 = normalize_In_sp_4(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_32(self) = +fun normalize_Concat_sp_45(self) = let {p1__3, tmp31} if self.p1 is Empty then @@ -2219,105 +2080,115 @@ fun normalize_Concat_sp_32(self) = Nothing then p1__3 = normalize_Nothing_sp_0(self.p1) if p1__3 is - Empty then normalize_Concat_sp_33(self.p2) + Empty then normalize_Concat_sp_46(self.p2) Nothing then p1__3 -fun normalize_Concat_sp_33(self) = +fun normalize_Concat_sp_46(self) = let {p1__3, tmp31} - p1__3 = normalize_In_sp_4(self.p1) - tmp31 = normalize_In_sp_5(self.p2) + p1__3 = normalize_In_sp_5(self.p1) + tmp31 = normalize_In_sp_6(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_34(self) = +fun normalize_Concat_sp_47(self) = let {p1__3, tmp31} p1__3 = self.p1.normalize() if p1__3 is - Empty then normalize_In_sp_5(self.p2) + Empty then normalize_In_sp_6(self.p2) Nothing then p1__3 else - tmp31 = normalize_In_sp_5(self.p2) + tmp31 = normalize_In_sp_6(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_35(self) = +fun normalize_Concat_sp_48(self) = let {p1__3, tmp31} p1__3 = self.p1.normalize() if p1__3 is - Empty then normalize_Concat_sp_36(self.p2) + Empty then normalize_Concat_sp_49(self.p2) Nothing then p1__3 else - tmp31 = normalize_Concat_sp_36(self.p2) + tmp31 = normalize_Concat_sp_49(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_36(self) = +fun normalize_Concat_sp_49(self) = let {p1__3, tmp31} p1__3 = normalize_Union_sp_10(self.p1) if p1__3 is - Empty then normalize_In_sp_5(self.p2) + Empty then normalize_In_sp_6(self.p2) Nothing then p1__3 else - tmp31 = normalize_In_sp_5(self.p2) + tmp31 = normalize_In_sp_6(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_37(self) = +fun normalize_Concat_sp_5(self) = + let {p1__3, tmp31} + p1__3 = normalize_Concat_sp_6(self.p1) + tmp31 = normalize_Concat_sp_7(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_50(self) = + let {p1__3, tmp31} + p1__3 = normalize_In_sp_5(self.p1) + tmp31 = normalize_In_sp_6(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_51(self) = + let {p1__3, tmp31} + p1__3 = normalize_Exact_sp_6(self.p1) + tmp31 = normalize_In_sp_4(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_52(self) = let {p1__3, tmp31} p1__3 = self.p1.normalize() if p1__3 is - Empty then normalize_Exact_sp_1(self.p2) + Empty then normalize_Exact_sp_7(self.p2) Nothing then p1__3 else - tmp31 = normalize_Exact_sp_1(self.p2) + tmp31 = normalize_Exact_sp_7(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_38(self) = +fun normalize_Concat_sp_53(self) = let {p1__3, tmp31} if self.p1 is Exact then - p1__3 = normalize_Exact_sp_1(self.p1) + p1__3 = normalize_Exact_sp_7(self.p1) Nothing then p1__3 = normalize_Nothing_sp_0(self.p1) Concat then - p1__3 = normalize_Concat_sp_37(self.p1) + p1__3 = normalize_Concat_sp_52(self.p1) if p1__3 is Nothing then p1__3 else - tmp31 = normalize_Concat_sp_39(self.p2) + tmp31 = normalize_Concat_sp_54(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_39(self) = +fun normalize_Concat_sp_54(self) = let {p1__3, tmp31} - p1__3 = normalize_Concat_sp_40(self.p1) + p1__3 = normalize_Concat_sp_55(self.p1) if p1__3 is Nothing then p1__3 else - tmp31 = normalize_Concat_sp_40(self.p2) + tmp31 = normalize_Concat_sp_55(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_4(self) = - let {p1__3, tmp31} - p1__3 = normalize_Exact_sp_0(self.p1) - tmp31 = normalize_Concat_sp_5(self.p2) - new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_40(self) = +fun normalize_Concat_sp_55(self) = let {p1__3, tmp31} p1__3 = normalize_Union_sp_13(self.p1) if p1__3 is - Empty then normalize_Exact_sp_1(self.p2) + Empty then normalize_Exact_sp_7(self.p2) Nothing then p1__3 else - tmp31 = normalize_Exact_sp_1(self.p2) + tmp31 = normalize_Exact_sp_7(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_41(self) = +fun normalize_Concat_sp_56(self) = let {p1__3, tmp31} - p1__3 = normalize_Exact_sp_7(self.p1) - tmp31 = normalize_Concat_sp_31(self.p2) + p1__3 = normalize_Exact_sp_8(self.p1) + tmp31 = normalize_Concat_sp_44(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_42(self) = +fun normalize_Concat_sp_57(self) = let {p1__3, tmp31} - p1__3 = normalize_Exact_sp_7(self.p1) - tmp31 = normalize_Concat_sp_33(self.p2) + p1__3 = normalize_Exact_sp_9(self.p1) + tmp31 = normalize_Concat_sp_46(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_43(self) = +fun normalize_Concat_sp_58(self) = let {p1__3, tmp31} p1__3 = normalize_Union_sp_15(self.p1) if p1__3 is - Empty then normalize_Concat_sp_36(self.p2) + Empty then normalize_Concat_sp_49(self.p2) Nothing then p1__3 else - tmp31 = normalize_Concat_sp_36(self.p2) + tmp31 = normalize_Concat_sp_49(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_44(self) = +fun normalize_Concat_sp_59(self) = let {p1__3, tmp31} if self.p1 is Nothing then @@ -2325,19 +2196,24 @@ fun normalize_Concat_sp_44(self) = Nothing then p1__3 = normalize_Nothing_sp_0(self.p1) Concat then - p1__3 = normalize_Concat_sp_45(self.p1) + p1__3 = normalize_Concat_sp_60(self.p1) if p1__3 is Nothing then p1__3 else tmp31 = normalize_Union_sp_13(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_45(self) = +fun normalize_Concat_sp_6(self) = + let {p1__3, tmp31} + p1__3 = normalize_In_sp_0(self.p1) + tmp31 = normalize_Star_sp_1(self.p2) + new Concat.class(p1__3, tmp31) +fun normalize_Concat_sp_60(self) = let {p1__3, tmp31} if self.p1 is Exact then - p1__3 = normalize_Exact_sp_1(self.p1) + p1__3 = normalize_Exact_sp_7(self.p1) Concat then - p1__3 = normalize_Concat_sp_37(self.p1) + p1__3 = normalize_Concat_sp_52(self.p1) if p1__3 is Nothing then p1__3 else @@ -2345,27 +2221,27 @@ fun normalize_Concat_sp_45(self) = Nothing then tmp31 = normalize_Nothing_sp_0(self.p2) Concat then - tmp31 = normalize_Concat_sp_46(self.p2) + tmp31 = normalize_Concat_sp_61(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_46(self) = +fun normalize_Concat_sp_61(self) = let {p1__3, tmp31} if self.p1 is Exact then - p1__3 = normalize_Exact_sp_1(self.p1) + p1__3 = normalize_Exact_sp_7(self.p1) Concat then - p1__3 = normalize_Concat_sp_37(self.p1) + p1__3 = normalize_Concat_sp_52(self.p1) if p1__3 is Nothing then p1__3 else if self.p2 is Exact then - tmp31 = normalize_Exact_sp_1(self.p2) + tmp31 = normalize_Exact_sp_7(self.p2) Nothing then tmp31 = normalize_Nothing_sp_0(self.p2) Concat then - tmp31 = normalize_Concat_sp_37(self.p2) + tmp31 = normalize_Concat_sp_52(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_47(self) = +fun normalize_Concat_sp_62(self) = let {p1__3, tmp31} p1__3 = self.p1.normalize() if p1__3 is @@ -2373,7 +2249,7 @@ fun normalize_Concat_sp_47(self) = if self.p2 is Nothing then normalize_Nothing_sp_0(self.p2) Nothing then normalize_Nothing_sp_0(self.p2) - Concat then normalize_Concat_sp_48(self.p2) + Concat then normalize_Concat_sp_63(self.p2) Nothing then p1__3 else if self.p2 is @@ -2382,29 +2258,29 @@ fun normalize_Concat_sp_47(self) = Nothing then tmp31 = normalize_Nothing_sp_0(self.p2) Concat then - tmp31 = normalize_Concat_sp_48(self.p2) + tmp31 = normalize_Concat_sp_63(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_48(self) = +fun normalize_Concat_sp_63(self) = let {p1__3, tmp31} if self.p1 is Exact then - p1__3 = normalize_Exact_sp_1(self.p1) + p1__3 = normalize_Exact_sp_7(self.p1) Concat then - p1__3 = normalize_Concat_sp_37(self.p1) + p1__3 = normalize_Concat_sp_52(self.p1) if p1__3 is Nothing then p1__3 else if self.p2 is Exact then - tmp31 = normalize_Exact_sp_1(self.p2) + tmp31 = normalize_Exact_sp_7(self.p2) Nothing then tmp31 = normalize_Nothing_sp_0(self.p2) Nothing then tmp31 = normalize_Nothing_sp_0(self.p2) Concat then - tmp31 = normalize_Concat_sp_37(self.p2) + tmp31 = normalize_Concat_sp_52(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_49(self) = +fun normalize_Concat_sp_64(self) = let {p1__3, tmp31} if self.p1 is Nothing then @@ -2412,46 +2288,36 @@ fun normalize_Concat_sp_49(self) = Nothing then p1__3 = normalize_Nothing_sp_0(self.p1) Concat then - p1__3 = normalize_Concat_sp_48(self.p1) + p1__3 = normalize_Concat_sp_63(self.p1) Concat then - p1__3 = normalize_Concat_sp_47(self.p1) + p1__3 = normalize_Concat_sp_62(self.p1) if p1__3 is Nothing then p1__3 else tmp31 = self.p2.normalize() new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_5(self) = - let {p1__3, tmp31} - p1__3 = normalize_Concat_sp_6(self.p1) - tmp31 = normalize_Concat_sp_7(self.p2) - new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_50(self) = +fun normalize_Concat_sp_65(self) = let {p1__3, tmp31} p1__3 = self.p1.normalize() if p1__3 is Empty then if self.p2 is - Exact then normalize_Exact_sp_1(self.p2) + Exact then normalize_Exact_sp_7(self.p2) Nothing then normalize_Nothing_sp_0(self.p2) Nothing then normalize_Nothing_sp_0(self.p2) - Concat then normalize_Concat_sp_37(self.p2) + Concat then normalize_Concat_sp_52(self.p2) Nothing then p1__3 else if self.p2 is Exact then - tmp31 = normalize_Exact_sp_1(self.p2) + tmp31 = normalize_Exact_sp_7(self.p2) Nothing then tmp31 = normalize_Nothing_sp_0(self.p2) Nothing then tmp31 = normalize_Nothing_sp_0(self.p2) Concat then - tmp31 = normalize_Concat_sp_37(self.p2) + tmp31 = normalize_Concat_sp_52(self.p2) new Concat.class(p1__3, tmp31) -fun normalize_Concat_sp_6(self) = - let {p1__3, tmp31} - p1__3 = normalize_In_sp_0(self.p1) - tmp31 = normalize_Star_sp_1(self.p2) - new Concat.class(p1__3, tmp31) fun normalize_Concat_sp_7(self) = let {p1__3, tmp31} p1__3 = normalize_Exact_sp_1(self.p1) @@ -2465,7 +2331,7 @@ fun normalize_Concat_sp_8(self) = Nothing then p1__3 = normalize_Nothing_sp_0(self.p1) if p1__3 is - Empty then normalize_Concat_sp_5(self.p2) + Empty then normalize_Star_sp_1(self.p2) Nothing then p1__3 fun normalize_Concat_sp_9(self) = let {p1__3, tmp31} @@ -2475,7 +2341,7 @@ fun normalize_Concat_sp_9(self) = Nothing then p1__3 = normalize_Nothing_sp_0(self.p1) if p1__3 is - Empty then normalize_Star_sp_2(self.p2) + Empty then normalize_Concat_sp_10(self.p2) Nothing then p1__3 fun startsWith_Concat_sp_0(self, c) = let {scrut13, scrut14, tmp32} @@ -2565,10 +2431,10 @@ fun startsWith_Concat_sp_17(self, c) = else true fun startsWith_Concat_sp_18(self, c) = let {scrut13, scrut14, tmp32} - tmp32 = startsWith_Exact_sp_2(self.p1, c) + tmp32 = startsWith_Exact_sp_3(self.p1, c) if tmp32 is false then - scrut13 = canBeEmpty_Exact_sp_2(self.p1) + scrut13 = canBeEmpty_Exact_sp_3(self.p1) false else true fun startsWith_Concat_sp_19(self, c) = @@ -2616,14 +2482,14 @@ fun startsWith_Concat_sp_22(self, c) = let {scrut13, scrut14, tmp32} if self.p1 is Exact then - tmp32 = startsWith_Exact_sp_4(self.p1, c) + tmp32 = startsWith_Exact_sp_5(self.p1, c) Concat then tmp32 = startsWith_Concat_sp_23(self.p1, c) if tmp32 is false then if self.p1 is Exact then - scrut13 = canBeEmpty_Exact_sp_4(self.p1) + scrut13 = canBeEmpty_Exact_sp_5(self.p1) Concat then scrut13 = canBeEmpty_Concat_sp_23(self.p1) false @@ -2636,7 +2502,7 @@ fun startsWith_Concat_sp_23(self, c) = scrut13 = self.p1.canBeEmpty() if scrut13 is true then - scrut14 = startsWith_Exact_sp_4(self.p2, c) + scrut14 = startsWith_Exact_sp_5(self.p2, c) if scrut14 is true then true else false @@ -2662,14 +2528,14 @@ fun startsWith_Concat_sp_25(self, c) = let {scrut13, scrut14, tmp32} if self.p1 is Exact then - tmp32 = startsWith_Exact_sp_4(self.p1, c) + tmp32 = startsWith_Exact_sp_5(self.p1, c) Concat then tmp32 = startsWith_Concat_sp_23(self.p1, c) if tmp32 is false then if self.p1 is Exact then - scrut13 = canBeEmpty_Exact_sp_4(self.p1) + scrut13 = canBeEmpty_Exact_sp_5(self.p1) Concat then scrut13 = canBeEmpty_Concat_sp_23(self.p1) false @@ -2760,13 +2626,13 @@ fun derive_Star_sp_0(self, c) = tmp33 = derive_In_sp_0(self.p, c) tmp34 = new Star.class(self.p) tmp35 = new Concat(tmp33, tmp34) - normalize_Concat_sp_2(tmp35) + normalize_Concat_sp_8(tmp35) fun derive_Star_sp_1(self, c) = let {tmp33, tmp34, tmp35} tmp33 = derive_In_sp_1(self.p, c) tmp34 = new Star.class(self.p) tmp35 = new Concat(tmp33, tmp34) - normalize_Concat_sp_9(tmp35) + normalize_Concat_sp_30(tmp35) fun normalize_Star_sp_0(self) = let {tmp36} tmp36 = self.p.normalize() @@ -2791,5 +2657,9 @@ fun normalize_Star_sp_5(self) = let {tmp36} tmp36 = normalize_In_sp_2(self.p) new Star.class(tmp36) +fun normalize_Star_sp_6(self) = + let {tmp36} + tmp36 = normalize_In_sp_3(self.p) + new Star.class(tmp36) fun startsWith_Star_sp_0(self, c) = startsWith_In_sp_0(self.p, c) fun startsWith_Star_sp_1(self, c) = startsWith_In_sp_1(self.p, c) \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls b/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls index 41ddf4bf73..5142492d00 100644 --- a/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls +++ b/hkmc2/shared/src/test/mlscript-compile/staging/out/Transform3D.mls @@ -56,13 +56,11 @@ module Transform3D with tmp16 = i - 1 iterRow(tmp15, x, y, rowX, colX, colY, tmp16) fun model(local, position, scaling, rotation) = - let {rot, res1, tmp47, tmp48, tmp49, tmp50, tmp51, tmp52, tmp53, tmp54, tmp55, tmp56, tmp57, tmp58, tup_36, obj_37} + let {rot, res1, tmp47, tmp48, tmp49, tmp50, tmp51, tmp52, tmp53, tmp54, tmp55, tmp56, tmp57, tmp58} tmp47 = rotateZ(rotation.2) tmp48 = rotateY(rotation.1) tmp49 = rotateX(rotation.0) - tup_36 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_37 = new Matrix(tup_36, 4, 4) - tmp50 = obj_37 + tmp50 = ident_Transform3D_sp_0(4) tmp51 = multiply_Transform3D_sp_0(tmp49, tmp50) tmp52 = multiply_Transform3D_sp_1(tmp48, tmp51) rot = multiply_Transform3D_sp_1(tmp47, tmp52) @@ -92,54 +90,44 @@ module Transform3D with res = zeros(x.r, y.c) iterRow_Transform3D_sp_0(res, x, y, x.r, x.c, y.c, x.r) fun rotateX(angle) = - let {s, c2, tmp32, tmp33, tmp34, tmp35, tmp36, tup_30, obj_31} + let {s, c2, tmp32, tmp33, tmp34, tmp35, tmp36} s = Math.sin(angle) c2 = Math.cos(angle) - tup_30 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_31 = new Matrix(tup_30, 4, 4) - tmp32 = obj_31 + tmp32 = ident_Transform3D_sp_0(4) tmp33 = update_Transform3D_sp_13(tmp32, 1, 1, c2) tmp34 = -(s) tmp35 = update_Transform3D_sp_14(tmp33, 1, 2, tmp34) tmp36 = update_Transform3D_sp_15(tmp35, 2, 1, s) update_Transform3D_sp_12(tmp36, 2, 2, c2) fun rotateY(angle) = - let {s1, c3, tmp37, tmp38, tmp39, tmp40, tmp41, tup_32, obj_33} + let {s1, c3, tmp37, tmp38, tmp39, tmp40, tmp41} s1 = Math.sin(angle) c3 = Math.cos(angle) - tup_32 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_33 = new Matrix(tup_32, 4, 4) - tmp37 = obj_33 + tmp37 = ident_Transform3D_sp_0(4) tmp38 = update_Transform3D_sp_10(tmp37, 0, 0, c3) tmp39 = update_Transform3D_sp_16(tmp38, 0, 2, s1) tmp40 = -(s1) tmp41 = update_Transform3D_sp_17(tmp39, 2, 0, tmp40) update_Transform3D_sp_12(tmp41, 2, 2, c3) fun rotateZ(angle) = - let {s2, c4, tmp42, tmp43, tmp44, tmp45, tmp46, tup_34, obj_35} + let {s2, c4, tmp42, tmp43, tmp44, tmp45, tmp46} s2 = Math.sin(angle) c4 = Math.cos(angle) - tup_34 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_35 = new Matrix(tup_34, 4, 4) - tmp42 = obj_35 + tmp42 = ident_Transform3D_sp_0(4) tmp43 = update_Transform3D_sp_10(tmp42, 0, 0, c4) tmp44 = -(s2) tmp45 = update_Transform3D_sp_18(tmp43, 0, 1, tmp44) tmp46 = update_Transform3D_sp_19(tmp45, 1, 0, s2) update_Transform3D_sp_11(tmp46, 1, 1, c4) fun scale(sx, sy, sz) = - let {tmp29, tmp30, tmp31, tup_28, obj_29} - tup_28 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_29 = new Matrix(tup_28, 4, 4) - tmp29 = obj_29 + let {tmp29, tmp30, tmp31} + tmp29 = ident_Transform3D_sp_0(4) tmp30 = update_Transform3D_sp_10(tmp29, 0, 0, sx) tmp31 = update_Transform3D_sp_11(tmp30, 1, 1, sy) update_Transform3D_sp_12(tmp31, 2, 2, sz) fun transform(dx, dy, dz) = - let {tmp26, tmp27, tmp28, tup_26, obj_27} - tup_26 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_27 = new Matrix(tup_26, 4, 4) - tmp26 = obj_27 + let {tmp26, tmp27, tmp28} + tmp26 = ident_Transform3D_sp_0(4) tmp27 = update_Transform3D_sp_7(tmp26, 0, 3, dx) tmp28 = update_Transform3D_sp_8(tmp27, 1, 3, dy) update_Transform3D_sp_9(tmp28, 2, 3, dz) @@ -156,13 +144,9 @@ module Transform3D with new Matrix(tmp22, r, c) open Transform3D fun ident_Transform3D_sp_0(w) = - let {m3, tup_2, obj_3, tup_24, obj_25} - tup_2 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - obj_3 = new Matrix(tup_2, 4, 4) - m3 = obj_3 - tup_24 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_25 = new Matrix(tup_24, 4, 4) - obj_25 + let {m3} + m3 = zeros_Transform3D_sp_0(w, w) + iterID_Transform3D_sp_1(m3, w, w) fun iterCol_Transform3D_sp_0(m, x, y, colX, colY, i, j) = let {scrut1, tmp9, tmp10, tmp11, tmp12, tmp13} scrut1 = ===(j, 0) @@ -616,7 +600,7 @@ fun iterCol_Transform3D_sp_63(m, x, y, colX, colY, i, j) = scrut1 = false tmp9 = 0 tmp10 = 0 - tmp11 = 1 + tmp11 = iter_Transform3D_sp_216(0, x, y, colX, i, tmp10, colX) tmp12 = update_Transform3D_sp_36(m, i, tmp9, tmp11) tmp13 = 0 iterCol_Transform3D_sp_64(tmp12, x, y, colX, colY, i, tmp13) @@ -715,53 +699,37 @@ fun iterID_Transform3D_sp_0(m, w, i) = tmp20 = i - 1 iterID_Transform3D_sp_0(tmp19, w, tmp20) fun iterID_Transform3D_sp_1(m, w, i) = - let {scrut3, tmp17, tmp18, tmp19, tmp20, tup_5, obj_6, tup_22, obj_23} + let {scrut3, tmp17, tmp18, tmp19, tmp20} scrut3 = false tmp17 = 0 tmp18 = 0 - tup_5 = [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - obj_6 = new Matrix(tup_5, 4, 4) - tmp19 = obj_6 + tmp19 = update_Transform3D_sp_3(m, tmp17, tmp18, 1) tmp20 = 3 - tup_22 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_23 = new Matrix(tup_22, 4, 4) - obj_23 + iterID_Transform3D_sp_2(tmp19, w, tmp20) fun iterID_Transform3D_sp_2(m, w, i) = - let {scrut3, tmp17, tmp18, tmp19, tmp20, tup_8, obj_9, tup_20, obj_21} + let {scrut3, tmp17, tmp18, tmp19, tmp20} scrut3 = false tmp17 = 1 tmp18 = 1 - tup_8 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - obj_9 = new Matrix(tup_8, 4, 4) - tmp19 = obj_9 + tmp19 = update_Transform3D_sp_4(m, tmp17, tmp18, 1) tmp20 = 2 - tup_20 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_21 = new Matrix(tup_20, 4, 4) - obj_21 + iterID_Transform3D_sp_3(tmp19, w, tmp20) fun iterID_Transform3D_sp_3(m, w, i) = - let {scrut3, tmp17, tmp18, tmp19, tmp20, tup_11, obj_12, tup_18, obj_19} + let {scrut3, tmp17, tmp18, tmp19, tmp20} scrut3 = false tmp17 = 2 tmp18 = 2 - tup_11 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0] - obj_12 = new Matrix(tup_11, 4, 4) - tmp19 = obj_12 + tmp19 = update_Transform3D_sp_5(m, tmp17, tmp18, 1) tmp20 = 1 - tup_18 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_19 = new Matrix(tup_18, 4, 4) - obj_19 + iterID_Transform3D_sp_4(tmp19, w, tmp20) fun iterID_Transform3D_sp_4(m, w, i) = - let {scrut3, tmp17, tmp18, tmp19, tmp20, tup_14, obj_15, tup_16, obj_17} + let {scrut3, tmp17, tmp18, tmp19, tmp20} scrut3 = false tmp17 = 3 tmp18 = 3 - tup_14 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_15 = new Matrix(tup_14, 4, 4) - tmp19 = obj_15 + tmp19 = update_Transform3D_sp_6(m, tmp17, tmp18, 1) tmp20 = 0 - tup_16 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_17 = new Matrix(tup_16, 4, 4) - obj_17 + iterID_Transform3D_sp_5(tmp19, w, tmp20) fun iterID_Transform3D_sp_5(m, w, i) = let {scrut3, tmp17, tmp18, tmp19, tmp20} scrut3 = true @@ -3622,22 +3590,16 @@ fun iter_Transform3D_sp_99(sum, x, y, colX, i, j, k) = tmp8 = 0 iter_Transform3D_sp_100(tmp7, x, y, colX, i, j, tmp8) fun model_Transform3D_sp_0(local, position, scaling, rotation) = - let {rot, res1, tmp47, tmp48, tmp49, tmp50, tmp51, tmp52, tmp53, tmp54, tmp55, tmp56, tmp57, tmp58, tup_53, obj_54, tup_66, obj_67, tup_79, obj_80} + let {rot, res1, tmp47, tmp48, tmp49, tmp50, tmp51, tmp52, tmp53, tmp54, tmp55, tmp56, tmp57, tmp58} tmp47 = rotateZ_Transform3D_sp_0(rotation.2) tmp48 = rotateY_Transform3D_sp_0(rotation.1) tmp49 = rotateX_Transform3D_sp_0(rotation.0) - tup_53 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_54 = new Matrix(tup_53, 4, 4) - tmp50 = obj_54 + tmp50 = ident_Transform3D_sp_0(4) tmp51 = multiply_Transform3D_sp_0(tmp49, tmp50) tmp52 = multiply_Transform3D_sp_1(tmp48, tmp51) rot = multiply_Transform3D_sp_1(tmp47, tmp52) - tup_66 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] - obj_67 = new Matrix(tup_66, 4, 4) - tmp53 = obj_67 - tup_79 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] - obj_80 = new Matrix(tup_79, 4, 4) - tmp54 = obj_80 + tmp53 = transform_Transform3D_sp_0(position.0, position.1, position.2) + tmp54 = scale_Transform3D_sp_0(scaling.0, scaling.1, scaling.2) tmp55 = [local.0, local.1, local.2, 1] tmp56 = new Matrix(tmp55, 4, 1) tmp57 = multiply_Transform3D_sp_4(tmp54, tmp56) @@ -3645,105 +3607,71 @@ fun model_Transform3D_sp_0(local, position, scaling, rotation) = res1 = multiply_Transform3D_sp_5(tmp53, tmp58) [res1.arr.0, res1.arr.1, res1.arr.2] fun multiply_Transform3D_sp_0(x, y) = - let {res, tup_38, obj_39} - tup_38 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - obj_39 = new Matrix(tup_38, 4, 4) - res = obj_39 + let {res} + res = zeros_Transform3D_sp_0(x.r, y.c) iterRow_Transform3D_sp_1(res, x, y, x.r, x.c, y.c, x.r) fun multiply_Transform3D_sp_1(x, y) = - let {res, tup_40, obj_41} - tup_40 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - obj_41 = new Matrix(tup_40, 4, 4) - res = obj_41 + let {res} + res = zeros_Transform3D_sp_0(x.r, y.c) iterRow_Transform3D_sp_6(res, x, y, x.r, x.c, y.c, x.r) fun multiply_Transform3D_sp_2(x, y) = - let {res, tup_43, obj_44} - tup_43 = [0, 0, 0, 0] - obj_44 = new Matrix(tup_43, 4, 1) - res = obj_44 + let {res} + res = zeros_Transform3D_sp_1(x.r, y.c) iterRow_Transform3D_sp_11(res, x, y, x.r, x.c, y.c, x.r) fun multiply_Transform3D_sp_3(x, y) = - let {res, tup_45, obj_46} - tup_45 = [0, 0, 0, 0] - obj_46 = new Matrix(tup_45, 4, 1) - res = obj_46 + let {res} + res = zeros_Transform3D_sp_1(x.r, y.c) iterRow_Transform3D_sp_16(res, x, y, x.r, x.c, y.c, x.r) fun multiply_Transform3D_sp_4(x, y) = - let {res, tup_81, obj_82} - tup_81 = [0, 0, 0, 0] - obj_82 = new Matrix(tup_81, 4, 1) - res = obj_82 + let {res} + res = zeros_Transform3D_sp_1(x.r, y.c) iterRow_Transform3D_sp_21(res, x, y, x.r, x.c, y.c, x.r) fun multiply_Transform3D_sp_5(x, y) = - let {res, tup_83, obj_84} - tup_83 = [0, 0, 0, 0] - obj_84 = new Matrix(tup_83, 4, 1) - res = obj_84 + let {res} + res = zeros_Transform3D_sp_1(x.r, y.c) iterRow_Transform3D_sp_26(res, x, y, x.r, x.c, y.c, x.r) fun rotateX_Transform3D_sp_0(angle) = - let {s, c2, tmp32, tmp33, tmp34, tmp35, tmp36, tup_51, obj_52} + let {s, c2, tmp32, tmp33, tmp34, tmp35, tmp36} s = Math.sin(2.51327412) c2 = Math.cos(2.51327412) - tup_51 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_52 = new Matrix(tup_51, 4, 4) - tmp32 = obj_52 + tmp32 = ident_Transform3D_sp_0(4) tmp33 = update_Transform3D_sp_13(tmp32, 1, 1, c2) tmp34 = -(s) tmp35 = update_Transform3D_sp_14(tmp33, 1, 2, tmp34) tmp36 = update_Transform3D_sp_15(tmp35, 2, 1, s) update_Transform3D_sp_12(tmp36, 2, 2, c2) fun rotateY_Transform3D_sp_0(angle) = - let {s1, c3, tmp37, tmp38, tmp39, tmp40, tmp41, tup_49, obj_50} + let {s1, c3, tmp37, tmp38, tmp39, tmp40, tmp41} s1 = Math.sin(3.1415926535) c3 = Math.cos(3.1415926535) - tup_49 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_50 = new Matrix(tup_49, 4, 4) - tmp37 = obj_50 + tmp37 = ident_Transform3D_sp_0(4) tmp38 = update_Transform3D_sp_10(tmp37, 0, 0, c3) tmp39 = update_Transform3D_sp_16(tmp38, 0, 2, s1) tmp40 = -(s1) tmp41 = update_Transform3D_sp_17(tmp39, 2, 0, tmp40) update_Transform3D_sp_12(tmp41, 2, 2, c3) fun rotateZ_Transform3D_sp_0(angle) = - let {s2, c4, tmp42, tmp43, tmp44, tmp45, tmp46, tup_47, obj_48} + let {s2, c4, tmp42, tmp43, tmp44, tmp45, tmp46} s2 = Math.sin(0) c4 = Math.cos(0) - tup_47 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_48 = new Matrix(tup_47, 4, 4) - tmp42 = obj_48 + tmp42 = ident_Transform3D_sp_0(4) tmp43 = update_Transform3D_sp_10(tmp42, 0, 0, c4) tmp44 = -(s2) tmp45 = update_Transform3D_sp_18(tmp43, 0, 1, tmp44) tmp46 = update_Transform3D_sp_19(tmp45, 1, 0, s2) update_Transform3D_sp_11(tmp46, 1, 1, c4) fun scale_Transform3D_sp_0(sx, sy, sz) = - let {tmp29, tmp30, tmp31, tup_68, obj_69, tup_71, obj_72, tup_74, obj_75, tup_77, obj_78} - tup_68 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_69 = new Matrix(tup_68, 4, 4) - tmp29 = obj_69 - tup_71 = [0.4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_72 = new Matrix(tup_71, 4, 4) - tmp30 = obj_72 - tup_74 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_75 = new Matrix(tup_74, 4, 4) - tmp31 = obj_75 - tup_77 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] - obj_78 = new Matrix(tup_77, 4, 4) - obj_78 + let {tmp29, tmp30, tmp31} + tmp29 = ident_Transform3D_sp_0(4) + tmp30 = update_Transform3D_sp_33(tmp29, 0, 0, sx) + tmp31 = update_Transform3D_sp_34(tmp30, 1, 1, sy) + update_Transform3D_sp_35(tmp31, 2, 2, sz) fun transform_Transform3D_sp_0(dx, dy, dz) = - let {tmp26, tmp27, tmp28, tup_55, obj_56, tup_58, obj_59, tup_61, obj_62, tup_64, obj_65} - tup_55 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_56 = new Matrix(tup_55, 4, 4) - tmp26 = obj_56 - tup_58 = [1, 0, 0, 11, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - obj_59 = new Matrix(tup_58, 4, 4) - tmp27 = obj_59 - tup_61 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 0, 0, 0, 0, 1] - obj_62 = new Matrix(tup_61, 4, 4) - tmp28 = obj_62 - tup_64 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] - obj_65 = new Matrix(tup_64, 4, 4) - obj_65 + let {tmp26, tmp27, tmp28} + tmp26 = ident_Transform3D_sp_0(4) + tmp27 = update_Transform3D_sp_30(tmp26, 0, 3, dx) + tmp28 = update_Transform3D_sp_31(tmp27, 1, 3, dy) + update_Transform3D_sp_32(tmp28, 2, 3, dz) fun update_Transform3D_sp_0(m, i, j, v) = let {tmp23, tmp24, tmp25} tmp23 = *(i, m.c) @@ -3883,53 +3811,53 @@ fun update_Transform3D_sp_29(m, i, j, v) = tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, v) new Matrix(tmp25, m.r, m.c) fun update_Transform3D_sp_3(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_4} + let {tmp23, tmp24, tmp25, tup_2} tmp23 = 0 tmp24 = 0 - tup_4 = [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - tmp25 = tup_4 + tup_2 = [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + tmp25 = tup_2 new Matrix(tmp25, m.r, m.c) fun update_Transform3D_sp_30(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_57} + let {tmp23, tmp24, tmp25, tup_7} tmp23 = 0 tmp24 = 3 - tup_57 = [1, 0, 0, 11, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - tmp25 = tup_57 + tup_7 = [1, 0, 0, 11, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_7 new Matrix(tmp25, m.r, m.c) fun update_Transform3D_sp_31(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_60} + let {tmp23, tmp24, tmp25, tup_8} tmp23 = 4 tmp24 = 7 - tup_60 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 0, 0, 0, 0, 1] - tmp25 = tup_60 + tup_8 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_8 new Matrix(tmp25, m.r, m.c) fun update_Transform3D_sp_32(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_63} + let {tmp23, tmp24, tmp25, tup_9} tmp23 = 8 tmp24 = 11 - tup_63 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] - tmp25 = tup_63 + tup_9 = [1, 0, 0, 11, 0, 1, 0, 4, 0, 0, 1, 51, 0, 0, 0, 1] + tmp25 = tup_9 new Matrix(tmp25, m.r, m.c) fun update_Transform3D_sp_33(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_70} + let {tmp23, tmp24, tmp25, tup_10} tmp23 = 0 tmp24 = 0 - tup_70 = [0.4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - tmp25 = tup_70 + tup_10 = [0.4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_10 new Matrix(tmp25, m.r, m.c) fun update_Transform3D_sp_34(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_73} + let {tmp23, tmp24, tmp25, tup_11} tmp23 = 4 tmp24 = 5 - tup_73 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - tmp25 = tup_73 + tup_11 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_11 new Matrix(tmp25, m.r, m.c) fun update_Transform3D_sp_35(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_76} + let {tmp23, tmp24, tmp25, tup_12} tmp23 = 8 tmp24 = 10 - tup_76 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] - tmp25 = tup_76 + tup_12 = [0.4, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 0.19, 0, 0, 0, 0, 1] + tmp25 = tup_12 new Matrix(tmp25, m.r, m.c) fun update_Transform3D_sp_36(m, i, j, v) = let {tmp23, tmp24, tmp25} @@ -3938,25 +3866,25 @@ fun update_Transform3D_sp_36(m, i, j, v) = tmp25 = Transform3D__Legacy."Mx$Transform3D".setAt(m.arr, 3, 1) new Matrix(tmp25, m.r, m.c) fun update_Transform3D_sp_4(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_7} + let {tmp23, tmp24, tmp25, tup_3} tmp23 = 4 tmp24 = 5 - tup_7 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - tmp25 = tup_7 + tup_3 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + tmp25 = tup_3 new Matrix(tmp25, m.r, m.c) fun update_Transform3D_sp_5(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_10} + let {tmp23, tmp24, tmp25, tup_4} tmp23 = 8 tmp24 = 10 - tup_10 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0] - tmp25 = tup_10 + tup_4 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0] + tmp25 = tup_4 new Matrix(tmp25, m.r, m.c) fun update_Transform3D_sp_6(m, i, j, v) = - let {tmp23, tmp24, tmp25, tup_13} + let {tmp23, tmp24, tmp25, tup_5} tmp23 = 12 tmp24 = 15 - tup_13 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] - tmp25 = tup_13 + tup_5 = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1] + tmp25 = tup_5 new Matrix(tmp25, m.r, m.c) fun update_Transform3D_sp_7(m, i, j, v) = let {tmp23, tmp24, tmp25} @@ -3983,8 +3911,8 @@ fun zeros_Transform3D_sp_0(r, c) = tmp22 = tup_1 new Matrix(tmp22, r, c) fun zeros_Transform3D_sp_1(r, c) = - let {tmp21, tmp22, tup_42} + let {tmp21, tmp22, tup_6} tmp21 = 4 - tup_42 = [0, 0, 0, 0] - tmp22 = tup_42 + tup_6 = [0, 0, 0, 0] + tmp22 = tup_6 new Matrix(tmp22, r, c) \ No newline at end of file diff --git a/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls b/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls index 95f7b9ad94..54c12af453 100644 --- a/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls +++ b/hkmc2/shared/src/test/mlscript/block-staging/ShapeProp.mls @@ -217,7 +217,7 @@ print(Dispatching."cache$Dispatching") //│ > fun test(b) = //│ > let {y1, m, tmp1, tmp2, tmp3} //│ > tmp1 = new L1.class(1) -//│ > y1 = 11 +//│ > y1 = twice_Dispatching_sp_0(tmp1, 5) //│ > tmp2 = new L2.class(2) //│ > tmp3 = new L3.class(3) //│ > m = pick_Dispatching_sp_2(tmp2, tmp3, b) @@ -319,7 +319,7 @@ staged module Inheritance with else "not B" Inheritance."test_gen"() -//│ = ["test", {}] +//│ = ["test", {Lit(5)}] staged module NonTermination with fun f(x, y) = if y